Merge pull request 'Fix starred images not being deleted' (#64) from klempin/tt-rss:master into master

Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/64
This commit is contained in:
fox 2022-01-17 20:14:29 +03:00
commit 49d93989af
1 changed files with 3 additions and 4 deletions

View File

@ -85,10 +85,9 @@ class Cache_Starred_Images extends Plugin {
Debug::log("expiring {$this->cache->get_dir()} and {$this->cache_status->get_dir()}..."); Debug::log("expiring {$this->cache->get_dir()} and {$this->cache_status->get_dir()}...");
$files = array_merge( $files = array_merge(
glob($this->cache->get_dir() . "/*.png"), glob($this->cache->get_dir() . "/*-*"),
glob($this->cache->get_dir() . "/*.mp4"), glob($this->cache_status->get_dir() . "/*.status")
glob($this->cache_status->get_dir() . "/*.status"), );
glob($this->cache->get_dir() . "/*.status"));
asort($files); asort($files);