From d65f77c081e756997e59e602f49eeea9b09799ff Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 27 Dec 2023 15:18:36 +0100 Subject: More robust assignment of categories to feeds (#5986) Several minor cases, none of which should really be necessary Might help: https://github.com/FreshRSS/FreshRSS/issues/5981 https://github.com/FreshRSS/FreshRSS/issues/5982 --- app/Models/Context.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Models/Context.php') diff --git a/app/Models/Context.php b/app/Models/Context.php index 3ea5a29eb..bb6fa4cbd 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -362,7 +362,7 @@ final class FreshRSS_Context { if (empty(self::$categories)) { $catDAO = FreshRSS_Factory::createCategoryDao(); - self::$categories = $catDAO->listCategories(); + self::$categories = $catDAO->listCategories(true); } switch($type) { @@ -458,7 +458,7 @@ final class FreshRSS_Context { if (empty(self::$categories)) { $catDAO = FreshRSS_Factory::createCategoryDao(); - self::$categories = $catDAO->listCategories(); + self::$categories = $catDAO->listCategories(true); } if (FreshRSS_Context::userConf()->onread_jump_next && strlen($get) > 2) { -- cgit v1.2.3