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-02-04 17:49:37 +0300
committerGitHub <noreply@github.com>2020-02-04 17:49:37 +0300
commitdfe200bd4efd24184c9a7d8dde9c774779d1f593 (patch)
tree27c4f83d29611c969d4dee07ad3a01e0081bfd1b /lib
parent9bd432255800fa8566b04f3e7351c254d757ec9c (diff)
parentda7bbb445418aae0f45af350c85a7d746f0f925d (diff)
Merge pull request #19228 from nextcloud/backport/19215/stable18
[stable18] 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) {