From 502090edcdd96e6b1c2f5471dd7b5670ebf6124f Mon Sep 17 00:00:00 2001 From: Inverle Date: Sun, 3 Aug 2025 13:44:18 +0200 Subject: Redirect to the login page from bookmarklet instead of 403 (#7782) Makes it easier than having to sign in then go back to the website I clicked the bookmarklet on. --- app/Controllers/feedController.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'app/Controllers/feedController.php') diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 4cd5e7369..977143882 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -21,6 +21,13 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { $token_is_ok = ($token != '' && $token == $token_param); $action = Minz_Request::actionName(); $allow_anonymous_refresh = FreshRSS_Context::systemConf()->allow_anonymous_refresh; + + // Likely coming from bookmarklet, redirect to the login page + if ($action === 'add') { + Minz_Request::forward(['c' => 'auth', 'a' => 'login']); + return; + } + if ($action !== 'actualize' || !($allow_anonymous_refresh || $token_is_ok)) { Minz_Error::error(403); -- cgit v1.2.3