diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-01-08 13:45:06 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-01-08 13:45:06 +0100 |
commit | 7c3db54ff697920a7fc35c6454c0b7c407ec2aa4 (patch) | |
tree | a0ee3d97b7c5acd851a80a1c97fe7b017edb9b3b /apps | |
parent | 0d3f945209f70905e4125fd62501b5adad8901d3 (diff) | |
download | nextcloud-server-7c3db54ff697920a7fc35c6454c0b7c407ec2aa4.tar.gz nextcloud-server-7c3db54ff697920a7fc35c6454c0b7c407ec2aa4.zip |
fix changing to next cycle
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/Jobs/Sync.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Jobs/Sync.php b/apps/user_ldap/lib/Jobs/Sync.php index 7a1f7703e5c..b78a1947e27 100644 --- a/apps/user_ldap/lib/Jobs/Sync.php +++ b/apps/user_ldap/lib/Jobs/Sync.php @@ -146,11 +146,11 @@ class Sync extends TimedJob { if ($expectMoreResults) { $this->increaseOffset($cycleData); } else { - $this->determineNextCycle(); + $this->determineNextCycle($cycleData); } $this->updateInterval(); } catch (ServerNotAvailableException $e) { - $this->determineNextCycle(); + $this->determineNextCycle($cycleData); } } |