From 83ba09c2a5f0ad12e7b6536d1c3b7cb4a8072005 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 2 May 2020 23:55:10 +0200 Subject: Fever integer type for last_refreshed_on_time 2 (#2945) #Fix fever_last_refreshed_on_time Try again https://github.com/FreshRSS/FreshRSS/pull/2944 --- app/Models/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/Feed.php') diff --git a/app/Models/Feed.php b/app/Models/Feed.php index 0fc92f0bd..dd1c8ce22 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -212,7 +212,7 @@ class FreshRSS_Feed extends Minz_Model { $this->description = $value === null ? '' : $value; } public function _lastUpdate($value) { - $this->lastUpdate = $value; + $this->lastUpdate = intval($value); } public function _priority($value) { $this->priority = intval($value); -- cgit v1.2.3