From: Markus Goetz Date: Thu, 29 Aug 2019 12:04:48 +0000 (+0200) Subject: Propagator: Delay job execution a bit #7439 X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~21^2~468^2~186 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=41dc68f99c330738cf7f12237cf1fe94891b993e;p=nextcloud-desktop.git Propagator: Delay job execution a bit #7439 --- diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index 3fbbd8f03..ed9eeea41 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -590,7 +590,7 @@ void OwncloudPropagator::scheduleNextJob() { if (_jobScheduled) return; // don't schedule more than 1 _jobScheduled = true; - QTimer::singleShot(0, this, &OwncloudPropagator::scheduleNextJobImpl); + QTimer::singleShot(3, this, &OwncloudPropagator::scheduleNextJobImpl); } void OwncloudPropagator::scheduleNextJobImpl()