mirror of
https://github.com/nextcloud/server.git
synced 2026-04-20 22:00:39 -04:00
Fix integer background job id type error
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
99dea46e25
commit
d5927e4d01
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