From ade9ba88178537a2181c9f27d23c69d6dedad34b Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 15 Aug 2025 09:37:00 +0200 Subject: Call cleanCache when refreshing feeds (#7827) Otherwise, it is only called when calling `httpGet()` which can be rare for users not using Web Scraping. https://github.com/FreshRSS/FreshRSS/discussions/7784#discussioncomment-14109207 --- app/Controllers/feedController.php | 3 +++ lib/lib_rss.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 97d68883c..4884b237f 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -862,6 +862,9 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { if ($entryDAO->inTransaction()) { $entryDAO->commit(); } + if (rand(0, 30) === 1) { // Remove old cache once in a while + cleanCache(CLEANCACHE_HOURS); + } return [$nbUpdatedFeeds, $feed, $nbNewArticles, $feedsCacheToRefresh]; } diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 59e7abba0..c0fe17708 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -557,7 +557,7 @@ function httpGet(string $url, string $cachePath, string $type = 'html', array $a } } - if (mt_rand(0, 30) === 1) { // Remove old entries once in a while + if (rand(0, 30) === 1) { // Remove old cache once in a while cleanCache(CLEANCACHE_HOURS); } -- cgit v1.2.3