diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-31 08:18:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 08:18:09 +0100 |
commit | 4765f5b3db6e8e3d2acae19a0c00f616729c1155 (patch) | |
tree | 003c379c9aa8a5505427e65be3549ce0d86a53c3 /lib/private | |
parent | 2f91ac0865b4d6e3ab60744bd82adc90bec398dc (diff) | |
parent | 98edf44c668427018e3f6f3780a5c1007647c412 (diff) | |
download | nextcloud-server-4765f5b3db6e8e3d2acae19a0c00f616729c1155.tar.gz nextcloud-server-4765f5b3db6e8e3d2acae19a0c00f616729c1155.zip |
Merge pull request #19215 from nextcloud/bugfix/19146/webcal_not_updated
WebcalRefreshJob: Fix reading refresh rate
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/BackgroundJob/JobList.php | 2 |
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) { |