From 807b397d37d45d53a04cfd2fb39723da546381af Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 11 Oct 2023 14:46:01 +0300 Subject: [PATCH] more-debug --- services/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/auth.py b/services/auth.py index c3a2301..64f5620 100644 --- a/services/auth.py +++ b/services/auth.py @@ -20,6 +20,7 @@ async def check_auth(req): if response.status_code != 200: return False, None r = response.json() + print(f"{r}") user_id = ( r.get("data", {}).get("getSession", {}).get("user", {}).get("id", None) if INTERNAL_AUTH_SERVER