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/stats/idle.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/stats/idle.phtml') diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index 5390a00a3..c5f9a1e6b 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -29,7 +29,7 @@ $error_class = ''; $error_title = ''; - if ($feed == null || $feed->inError()) { + if ($feed === null || $feed->inError()) { $error_class = ' error'; $error_title = _t('sub.feed.error'); } -- cgit v1.2.3