summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPhilip Klempin <[email protected]>2022-01-16 22:44:46 +0000
committerPhilip Klempin <[email protected]>2022-01-16 22:44:46 +0000
commita769ccc51c5defece9a691f25955e8d72a467fb1 (patch)
treedffdbf10cc1d3deaac325f03c0936f3068ba8bb3 /plugins
parent3cdbd4422c9cdfc5fdd8fb6571f8515fa0aa6cf8 (diff)
Fix starred images not being deleted
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/cache_starred_images/init.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/cache_starred_images/init.php b/plugins/cache_starred_images/init.php
index a020d7d01..feec81d62 100755
--- a/plugins/cache_starred_images/init.php
+++ b/plugins/cache_starred_images/init.php
@@ -85,10 +85,9 @@ class Cache_Starred_Images extends Plugin {
Debug::log("expiring {$this->cache->get_dir()} and {$this->cache_status->get_dir()}...");
$files = array_merge(
- glob($this->cache->get_dir() . "/*.png"),
- glob($this->cache->get_dir() . "/*.mp4"),
- glob($this->cache_status->get_dir() . "/*.status"),
- glob($this->cache->get_dir() . "/*.status"));
+ glob($this->cache->get_dir() . "/*-*"),
+ glob($this->cache_status->get_dir() . "/*.status")
+ );
asort($files);