1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

fix Feeds::_get_counters() used improperly as a replacement for

getFeedUnread()
This commit is contained in:
Andrew Dolgov
2022-02-20 12:48:38 +03:00
parent 77f39d65b5
commit f7e2f62022
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1111,7 +1111,7 @@ class Pref_Feeds extends Handler_Protected {
$title = Feeds::_get_title($feed_id, false);
if ($unread === false)
$unread = Feeds::_get_counters($feed_id, false);
$unread = Feeds::_get_counters($feed_id, false, true);
return [
'id' => 'FEED:' . $feed_id,