From ea2bcf3a5d879286350c6ad60872f94f46c6fffb Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 7 May 2024 23:04:17 +0200 Subject: Fix individual OMPL feed export (#6435) fix https://github.com/FreshRSS/FreshRSS/issues/6433 --- app/Models/Context.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/Models/Context.php') diff --git a/app/Models/Context.php b/app/Models/Context.php index 37a2064c6..7efb24ab1 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -389,7 +389,8 @@ final class FreshRSS_Context { if (empty(self::$categories)) { $catDAO = FreshRSS_Factory::createCategoryDao(); - self::$categories = $catDAO->listCategories(true); + $details = $type === 'f'; // Load additional feed details in the case of feed view + self::$categories = $catDAO->listCategories(true, $details); } switch($type) { -- cgit v1.2.3