From: Markus Goetz Date: Tue, 23 Feb 2016 13:27:35 +0000 (+0100) Subject: Propagator: Remove 100msec delay between jobs X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~1350 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=fe7630954e8132895f4955fbd910b04f9acf4222;p=nextcloud-desktop.git Propagator: Remove 100msec delay between jobs --- diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index 9d93b592f..40446111a 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -520,7 +520,7 @@ void OwncloudPropagator::scheduleNextJob() { if (this->_activeJobs < maximumActiveJob()) { if (_rootJob->scheduleNextJob()) { - QTimer::singleShot(100, this, SLOT(scheduleNextJob())); + QTimer::singleShot(0, this, SLOT(scheduleNextJob())); } } }