diff options
Diffstat (limited to 'core/Command/Background')
-rw-r--r-- | core/Command/Background/ListCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Background/ListCommand.php b/core/Command/Background/ListCommand.php index d29ac38a7bf..bdd45f3a25f 100644 --- a/core/Command/Background/ListCommand.php +++ b/core/Command/Background/ListCommand.php @@ -77,7 +77,7 @@ class ListCommand extends Base { fn ($job) => [ 'id' => $job->getId(), 'class' => get_class($job), - 'last_run' => $job->getLastRun(), + 'last_run' => date(DATE_ATOM, $job->getLastRun()), 'argument' => json_encode($job->getArgument()), ], $jobs |