This commit is contained in:
Aevann1 2021-07-25 04:29:02 +02:00
parent e0cbefe7f6
commit 6f7ed13cd0
3 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ def resize():
@auth_required
def postbanaward(post_id, v):
if not v.banawards > 0: return render_template("errors/402.html", v=v)
if not v.banawards > 0: return render_template("errors/banaward.html", v=v)
post = g.db.query(Submission).filter_by(id=post_id).first()
if not post: abort(400)