decrease agendaposter phrase max length to 35 characters

pull/142/head
Aevann 2023-03-24 20:05:32 +02:00
parent 94a5598bed
commit 69e33b671d
1 changed files with 2 additions and 2 deletions

View File

@ -309,8 +309,8 @@ def award_thing(v, thing_type, id):
if not note: abort(400, "Missing phrase!")
if len(note) > 50:
abort(400, "Max length for phrase is 50 characters!")
if len(note) > 35:
abort(400, "Max length for phrase is 35 characters!")
author.agendaposter_phrase = note.lower()