From ec978091bab9a5cb7b592b0ce18653974b922aea Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Wed, 1 May 2024 19:57:44 +0200 Subject: [PATCH] store: fix staff ratelimit (#2279) --- store/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/app.py b/store/app.py index 684d7717..6bd53052 100644 --- a/store/app.py +++ b/store/app.py @@ -252,7 +252,7 @@ def add_to_wishlist(): checks = [ ( check_wishlist_submit_ratelimit(session["user"]["username"]) is True - and session["user"]["bypass_ratelimit"] is False, + or session["user"]["bypass_ratelimit"] is True, _( "Proposing wishlist additions is limited to once every 15 days per user. Please try again in a few days." ),