mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-14 02:03:55 -04:00
Fix return type for broken feeds (#3423)
Fix a rare error when an invalid feed is forced to be added again. FreshRSS code (not upstream)
This commit is contained in:
committed by
GitHub
parent
d42b4c299c
commit
23c43b1fbf
@@ -1424,7 +1424,7 @@ class SimplePie
|
||||
// Fetch the data via SimplePie_File into $this->raw_data
|
||||
if (($fetched = $this->fetch_data($cache)) === true)
|
||||
{
|
||||
return $this->data['mtime'];
|
||||
return empty($this->data['mtime']) ? false : $this->data['mtime'];
|
||||
}
|
||||
elseif ($fetched === false) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user