Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix integer background job id type error
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst authored and Backportbot committed Jan 15, 2019
commit cf2657c87341d3debd165e38f8f72c1a14d07de1
2 changes: 1 addition & 1 deletion lib/private/BackgroundJob/JobList.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private function buildJob($row) {
}
}

$job->setId($row['id']);
$job->setId((int) $row['id']);
$job->setLastRun($row['last_run']);
$job->setArgument(json_decode($row['argument'], true));
return $job;
Expand Down