From 7ff7b2924931a56e3c6cf617b17da6a11eddd75e Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 5 Oct 2023 17:45:30 +0300 Subject: [PATCH] print-debugging --- files/routes/users.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/users.py b/files/routes/users.py index 51af5d4d22..d8027af45b 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -1337,6 +1337,7 @@ if KOFI_TOKEN: def kofi(): data = json.loads(request.values['data']) verification_token = data['verification_token'] + print(verification_token, flush=True) if verification_token not in {KOFI_TOKEN, KOFI_TOKEN2}: abort(400) print(request.headers.get('CF-Connecting-IP'), flush=True)