summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/backgroundjob/worker.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/backgroundjob/worker.php b/lib/backgroundjob/worker.php
index 0acbb9d3217..8a58a76e3a4 100644
--- a/lib/backgroundjob/worker.php
+++ b/lib/backgroundjob/worker.php
@@ -73,8 +73,8 @@ class OC_BackgroundJob_Worker{
// search for next background job
foreach( $regular_tasks as $key => $value ){
- if( strcmp( $lasttask, $key ) > 0 ){
- OC_Appconfig::getValue( 'core', 'backgroundjobs_task', $key );
+ if( strcmp( $key, $lasttask ) > 0 ){
+ OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key );
$done = true;
call_user_func( $value );
break;