From 3eb3574b1328a4172142a50b2a344413b7910d44 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 21 Feb 2024 09:46:47 +0100 Subject: No warning for muted feeds (#6114) * No warning for muted feeds fix https://github.com/FreshRSS/FreshRSS/issues/6113 * Revert subscription --- app/views/index/global.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/index') diff --git a/app/views/index/global.phtml b/app/views/index/global.phtml index 6a46ec2ca..011b66a49 100644 --- a/app/views/index/global.phtml +++ b/app/views/index/global.phtml @@ -45,7 +45,7 @@ $error_class = ''; $error_title = ''; - if ($feed->inError()) { + if ($feed->inError() && !$feed->mute()) { $error_class = ' error'; $error_title = _t('sub.feed.error'); } -- cgit v1.2.3