From d31a08f1d59e9f70b0d2fc2a139efa52d1b03d75 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Sat, 13 Jan 2018 22:25:15 +0200 Subject: Keep syncing regardless of connectivity (#93) --- src/MatrixClient.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/MatrixClient.cc') diff --git a/src/MatrixClient.cc b/src/MatrixClient.cc index 53f6a32e..70a9bbf5 100644 --- a/src/MatrixClient.cc +++ b/src/MatrixClient.cc @@ -260,7 +260,7 @@ MatrixClient::sync() noexcept int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); if (status == 0 || status >= 400) { - emit syncFailed(reply->errorString()); + qDebug() << reply->errorString(); return; } -- cgit 1.5.1