diff options
| author | 2024-05-01 23:15:49 +0200 | |
|---|---|---|
| committer | 2024-05-01 23:15:49 +0200 | |
| commit | cd8fc428cb22825a3fc8e8c1d3d82135567560cd (patch) | |
| tree | a5b850b77d53c365efcdb9da5b9536f027e51d93 /app/Controllers/feedController.php | |
| parent | c9307e4324a3c9c48410fa0c0f77401b7391e042 (diff) | |
Allow manual refresh of disabled feeds (#6408)
fix https://github.com/FreshRSS/FreshRSS/issues/6407
Diffstat (limited to 'app/Controllers/feedController.php')
| -rw-r--r-- | app/Controllers/feedController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 3b3bd6ed0..b746cec1a 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -455,8 +455,8 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { continue; //When PubSubHubbub is used, do not pull refresh so often } - if ($feed->mute()) { - continue; //Feed refresh is disabled + if ($feed->mute() && $feed_id === null) { + continue; // If the feed is disabled, only allow refresh if manually requested for that specific feed } $mtime = $feed->cacheModifiedTime() ?: 0; $ttl = $feed->ttl(); |
