From a18c35046daee15e7ac5f85db290d54541a03e3c Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 11 Nov 2025 08:17:12 +0100 Subject: Housekeeping lib_rss.php (#8193) * Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party --- app/Utils/feverUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Utils/feverUtil.php') diff --git a/app/Utils/feverUtil.php b/app/Utils/feverUtil.php index 8b06568dd..ff6c4f14f 100644 --- a/app/Utils/feverUtil.php +++ b/app/Utils/feverUtil.php @@ -62,7 +62,7 @@ class FreshRSS_fever_Util { * @throws FreshRSS_Context_Exception */ public static function deleteKey(string $username): bool { - $userConfig = get_user_configuration($username); + $userConfig = FreshRSS_UserConfiguration::getForUser($username); if ($userConfig === null) { return false; } -- cgit v1.2.3