diff options
| -rw-r--r-- | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index c8d534545..396649701 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -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; |
