From 46cb751f73ca4234d5600e0c76e7f93c74278ef5 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Wed, 27 Feb 2019 15:28:39 +0900 Subject: Connection::stopSync: undo the sync loop --- lib/connection.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3