Skip to content
Snippets Groups Projects
Commit d428b0d9 authored by Andreas Fischer's avatar Andreas Fischer
Browse files

Merge pull request #5696 from owncloud/fixing-5670-master

decode arguments as array

* owncloud/fixing-5670-master:
  decode arguments as array
parents a438abe2 08c8bf5a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment