aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Context.php
diff options
context:
space:
mode:
authorGravatar Luc SANCHEZ <4697568+ColonelMoutarde@users.noreply.github.com> 2022-11-14 15:07:23 +0100
committerGravatar GitHub <noreply@github.com> 2022-11-14 15:07:23 +0100
commitd9e1c1c2c3abb6cf91b6866961d2a482ef50c3ea (patch)
tree5beb69c38870771d4c7239dc9a3dba7ca508fde0 /app/Models/Context.php
parenta44e2a0d0c35c63a94abfc482955c23d9d823e4a (diff)
Typing function checkToken (#4561)
* Typing function checkToken * Typing function and rename Co-authored-by: Luc SANCHEZ <luc.sanchez@zol.fr>
Diffstat (limited to 'app/Models/Context.php')
-rw-r--r--app/Models/Context.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php
index fed2a6767..152ecc4bf 100644
--- a/app/Models/Context.php
+++ b/app/Models/Context.php
@@ -163,7 +163,7 @@ class FreshRSS_Context {
// Update number of read / unread variables.
$entryDAO = FreshRSS_Factory::createEntryDao();
self::$total_starred = $entryDAO->countUnreadReadFavorites();
- self::$total_unread = FreshRSS_CategoryDAO::CountUnreads(
+ self::$total_unread = FreshRSS_CategoryDAO::countUnread(
self::$categories, 1
);