diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-27 15:28:39 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-27 15:28:39 +0900 |
commit | 46cb751f73ca4234d5600e0c76e7f93c74278ef5 (patch) | |
tree | d39e4dbdb71485043825fd924b9b64b607f514b4 | |
parent | 39d44789d0f378b29d2c15994e8fa630edcdb408 (diff) | |
download | libquotient-46cb751f73ca4234d5600e0c76e7f93c74278ef5.tar.gz libquotient-46cb751f73ca4234d5600e0c76e7f93c74278ef5.zip |
Connection::stopSync: undo the sync loop
-rw-r--r-- | lib/connection.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 998282d3..26b40c03 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -466,7 +466,10 @@ void Connection::onSyncSuccess(SyncData &&data, bool fromCache) { void Connection::stopSync() { - if (d->syncJob) + // If there's a sync loop, break it + disconnect(this, &Connection::syncDone, + this, &Connection::syncLoopIteration); + if (d->syncJob) // If there's an ongoing sync job, stop it too { d->syncJob->abandon(); d->syncJob = nullptr; |