forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-07-30 10:42:52 +02:00
parent 0ac7b970cc
commit b574b318bf
1 changed files with 3 additions and 1 deletions

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)