This commit is contained in:
Aevann1 2021-07-30 10:42:52 +02:00
parent 4a777a8c8a
commit 3ad9fdf93e

View file

@ -54,7 +54,9 @@ def get_account(id, v=None):
print(id)
id = int(id, 36)
print(id)
except: abort(404)
except Exception as e:
print(e)
abort(404)
user = g.db.query(User).filter_by(id = id).first()
if not user: abort(404)