mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 21:34:35 -04:00
Fix muted feeds for WebSub (#6671)
This commit is contained in:
committed by
GitHub
parent
6e01866845
commit
666e7b27ce
@@ -452,7 +452,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
|
||||
continue; //When PubSubHubbub is used, do not pull refresh so often
|
||||
}
|
||||
|
||||
if ($feed->mute() && $feed_id === null) {
|
||||
if ($feed->mute() && ($feed_id === null || $simplePiePush !== null)) {
|
||||
continue; // If the feed is disabled, only allow refresh if manually requested for that specific feed
|
||||
}
|
||||
$mtime = $feed->cacheModifiedTime() ?: 0;
|
||||
|
||||
Reference in New Issue
Block a user