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

fix a few more warnings

This commit is contained in:
Andrew Dolgov
2021-02-06 10:23:45 +03:00
parent 10392ecc28
commit ce489a724b
2 changed files with 2 additions and 3 deletions

View File

@@ -591,12 +591,12 @@ class RSSUtils {
* the icon avgcolor again (unless the icon got updated) */
$favicon_file = ICONS_DIR . "/$feed.ico";
$favicon_modified = @filemtime($favicon_file);
$favicon_modified = file_exists($favicon_file) ? filemtime($favicon_file) : -1;
Debug::log("checking favicon...", Debug::$LOG_VERBOSE);
self::check_feed_favicon($site_url, $feed);
$favicon_modified_new = @filemtime($favicon_file);
$favicon_modified_new = file_exists($favicon_file) ? filemtime($favicon_file) : -1;
if ($favicon_modified_new > $favicon_modified)
$favicon_avg_color = '';