mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 14:35:55 +00:00
cache_starred_images: don't try to use undefined array index
This commit is contained in:
@@ -164,7 +164,7 @@ class Cache_Starred_Images extends Plugin {
|
||||
if ($this->cache->exists($status_filename))
|
||||
$status = json_decode($this->cache->get($status_filename), true);
|
||||
else
|
||||
$status = [];
|
||||
$status = ["attempt" => 0];
|
||||
|
||||
$status["attempt"] += 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user