1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

update_rss_feed: force cast initial timestamp value to integer

This commit is contained in:
Andrew Dolgov
2019-09-30 11:41:07 +03:00
parent 8e8fd73dbd
commit 4e05008aac

View File

@@ -559,7 +559,7 @@ class RSSUtils {
Debug::log("guid $entry_guid / $entry_guid_hashed", Debug::$LOG_VERBOSE);
$entry_timestamp = strip_tags($item->get_date());
$entry_timestamp = (int)$item->get_date();
Debug::log("orig date: " . $item->get_date(), Debug::$LOG_VERBOSE);