This commit is contained in:
Aevann1 2022-02-23 07:17:03 +02:00
parent 946263d8bc
commit fde6526a56
8 changed files with 12 additions and 12 deletions

View file

@ -510,7 +510,7 @@ def badge_grant_post(v):
try: badge_id = int(request.values.get("badge_id"))
except: abort(400)
if badge_id in (94,95,96,97,98,109): abort(403)
if badge_id in {94,95,96,97,98,109}: abort(403)
if user.has_badge(badge_id):
return render_template("admin/badge_grant.html", v=v, badge_types=badges, error="User already has that badge.")