forked from rDrama/rDrama
1
0
Fork 0

fix 500 error on some ancient browsers or smth

master
Aevann 2023-08-01 09:51:48 +03:00
parent ff3c781b72
commit 022440aa7f
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ def sign_up_post(v):
if not username: abort(400)
username = username.strip()
email = request.values.get("email").strip().lower()
email = request.values.get("email", "").strip().lower()
ref_id = 0
try: