getCategoryChildrenUnread: fix typo

This commit is contained in:
Andrew Dolgov 2020-01-25 10:00:22 +03:00
parent a6ced36189
commit cdd2b6fd22
1 changed files with 1 additions and 1 deletions

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);
}