Skip to content

Commit

Permalink
store: fix staff ratelimit (#2279)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexAubin authored May 1, 2024
1 parent f0409db commit ec97809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
),
Expand Down

0 comments on commit ec97809

Please sign in to comment.