diff options
| author | 2024-02-21 09:46:47 +0100 | |
|---|---|---|
| committer | 2024-02-21 09:46:47 +0100 | |
| commit | 3eb3574b1328a4172142a50b2a344413b7910d44 (patch) | |
| tree | 44c07ca7acb8bcbb5d156e787d3b6a530673b03c /app/layout/aside_feed.phtml | |
| parent | 7d6a64a52243838e37ed47289b73574cfcd3b356 (diff) | |
No warning for muted feeds (#6114)
* No warning for muted feeds
fix https://github.com/FreshRSS/FreshRSS/issues/6113
* Revert subscription
Diffstat (limited to 'app/layout/aside_feed.phtml')
| -rw-r--r-- | app/layout/aside_feed.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index 8dca19b41..304c10d04 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -109,7 +109,7 @@ $error_class = ''; $error_title = ''; - if ($feed->inError()) { + if ($feed->inError() && !$feed->mute()) { $error_class = ' error'; $error_title = _t('sub.feed.error'); } |
