mirror of
https://github.com/nextcloud/server.git
synced 2026-06-15 11:41:20 -04:00
Merge pull request #13609 from nextcloud/backport/13607/stable15
[stable15] Fix integer background job id type error
This commit is contained in:
commit
f50de2af23
1 changed files with 1 additions and 1 deletions
|
|
@ -273,7 +273,7 @@ class JobList implements IJobList {
|
|||
}
|
||||
}
|
||||
|
||||
$job->setId($row['id']);
|
||||
$job->setId((int) $row['id']);
|
||||
$job->setLastRun($row['last_run']);
|
||||
$job->setArgument(json_decode($row['argument'], true));
|
||||
return $job;
|
||||
|
|
|
|||
Loading…
Reference in a new issue