mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
decode arguments as array
This commit is contained in:
parent
3488202f67
commit
08c8bf5a7b
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ class JobList {
|
|||
$job = new $class();
|
||||
$job->setId($row['id']);
|
||||
$job->setLastRun($row['last_run']);
|
||||
$job->setArgument(json_decode($row['argument']));
|
||||
$job->setArgument(json_decode($row['argument'], true));
|
||||
return $job;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue