mirror of
https://github.com/friendica/friendica
synced 2024-12-23 07:20:15 +00:00
Fix the datetime of the last cron execution
This commit is contained in:
parent
bdf95e8305
commit
7e8a6335ae
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class Stats extends BaseModule
|
||||||
$statistics = [
|
$statistics = [
|
||||||
'cron' => [
|
'cron' => [
|
||||||
'lastExecution' => [
|
'lastExecution' => [
|
||||||
'datetime' => DateTimeFormat::utc($this->keyValue->get('last_cron'), DateTimeFormat::JSON),
|
'datetime' => date(DateTimeFormat::JSON, (int)$this->keyValue->get('last_cron')),
|
||||||
'timestamp' => (int)$this->keyValue->get('last_cron'),
|
'timestamp' => (int)$this->keyValue->get('last_cron'),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue