diff options
| author | 2020-05-02 20:04:51 +0200 | |
|---|---|---|
| committer | 2020-05-02 20:04:51 +0200 | |
| commit | 1bb4c75db7460b91f7553fd316717510b90aa8c4 (patch) | |
| tree | de66923255303bf9c88be6dfca578f96f5762042 /p/api/fever.php | |
| parent | af575e061d8cd08f4e3c3ccf5b5d1d7a352cf50f (diff) | |
Fever integer type for last_refreshed_on_time (#2944)
#Fix https://github.com/FreshRSS/FreshRSS/issues/2940
https://feedafever.com/api
Diffstat (limited to 'p/api/fever.php')
| -rw-r--r-- | p/api/fever.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/fever.php b/p/api/fever.php index 94d3a3b3d..b88ccc255 100644 --- a/p/api/fever.php +++ b/p/api/fever.php @@ -288,7 +288,7 @@ class FeverAPI $arr = array('api_version' => self::API_LEVEL, 'auth' => $status); if ($status === self::STATUS_OK) { - $arr['last_refreshed_on_time'] = (string) $this->lastRefreshedOnTime(); + $arr['last_refreshed_on_time'] = $this->lastRefreshedOnTime(); $arr = array_merge($arr, $reply); } |
