1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 08:35:55 +00:00

getCategoryChildrenUnread: fix typo

This commit is contained in:
Andrew Dolgov
2020-01-25 10:00:22 +03:00
parent a6ced36189
commit cdd2b6fd22

View File

@@ -1337,7 +1337,7 @@ class Feeds extends Handler_Protected {
$unread = 0;
while ($line = $sth->fetch()) {
$unread += Feeds::getCategoryUnread($line["id"], $owner_uid) +
$unread += Feeds::getCategoryUnread($line["id"], $owner_uid);
$unread += Feeds::getCategoryChildrenUnread($line["id"], $owner_uid);
}