aboutsummaryrefslogtreecommitdiff
path: root/p/f.php
diff options
context:
space:
mode:
authorGravatar Luc SANCHEZ <4697568+ColonelMoutarde@users.noreply.github.com> 2023-04-05 22:28:34 +0200
committerGravatar GitHub <noreply@github.com> 2023-04-05 22:28:34 +0200
commit4f078958b5603900592e14f9f3189bbebfc81bab (patch)
tree95cac533a26c018bf965c2c2a75f18670ff17959 /p/f.php
parent3f1695db039101d44d611f0d1781d1ba034034dd (diff)
Fix phpstan level 9 error for f.php and lib/favicons.php (#5263)
* Fix phpstan level 9 error * Fix phpstan level 9 error * Remarque's from Alkarex --------- Co-authored-by: Luc <sanchezluc+freshrss@gmail.com>
Diffstat (limited to 'p/f.php')
-rw-r--r--p/f.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/p/f.php b/p/f.php
index 7837407e2..6e30b64b2 100644
--- a/p/f.php
+++ b/p/f.php
@@ -32,6 +32,10 @@ if ($ico_mtime == false || $ico_mtime < $txt_mtime || ($ico_mtime < time() - (mt
// no ico file or we should download a new one.
$url = file_get_contents($txt);
+ if ($url === false) {
+ show_default_favicon(1800);
+ exit();
+ }
if (!download_favicon($url, $ico)) {
// Download failed
if ($ico_mtime == false) {