Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-01-31 10:18:09 +0300
committerGitHub <noreply@github.com>2020-01-31 10:18:09 +0300
commit4765f5b3db6e8e3d2acae19a0c00f616729c1155 (patch)
tree003c379c9aa8a5505427e65be3549ce0d86a53c3 /lib
parent2f91ac0865b4d6e3ab60744bd82adc90bec398dc (diff)
parent98edf44c668427018e3f6f3780a5c1007647c412 (diff)
Merge pull request #19215 from nextcloud/bugfix/19146/webcal_not_updated
WebcalRefreshJob: Fix reading refresh rate
Diffstat (limited to 'lib')
-rw-r--r--lib/private/BackgroundJob/JobList.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/BackgroundJob/JobList.php b/lib/private/BackgroundJob/JobList.php
index 12da0c4da10..23695bfbe03 100644
--- a/lib/private/BackgroundJob/JobList.php
+++ b/lib/private/BackgroundJob/JobList.php
@@ -276,7 +276,7 @@ class JobList implements IJobList {
}
$job->setId((int) $row['id']);
- $job->setLastRun($row['last_run']);
+ $job->setLastRun((int) $row['last_run']);
$job->setArgument(json_decode($row['argument'], true));
return $job;
} catch (AutoloadNotAllowedException $e) {