From 01fb84238d2a8af60207979d9d2eab073b1c93e1 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 27 Oct 2024 00:45:33 +0300 Subject: [PATCH] fix 500 error --- files/routes/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/users.py b/files/routes/users.py index 3abdaea17..34c573c31 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -1526,7 +1526,7 @@ def av(): print(data, flush=True) data = data[0] - id = data['id'] + id = str(data['id']) existing = g.db.get(Transaction, id) if existing: return ''