From 804472e6b255eaa5ed6cb2587f1bf28922e109be Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 27 Nov 2022 01:08:27 +0200 Subject: [PATCH] Revert "the request is prolly boned anyway, let's help friends help me :)" This reverts commit cfffbc61a07b189d19c23f5d5a5962bc6256bc69. --- files/routes/wrappers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/routes/wrappers.py b/files/routes/wrappers.py index c8d1a6329..a4cf350df 100644 --- a/files/routes/wrappers.py +++ b/files/routes/wrappers.py @@ -24,12 +24,10 @@ def calc_users(v): if request: print(f"while serving {request.method} {request.full_path}") print(f"user agent: {getattr(g, 'agent', '-attribute not present-')}") - print(f"xhr? {request.headers.get('xhr')} / API client? {bool(request.headers.get('Authorization'))}") else: print("no request context") print(f"v: {v}") - print(f"db?: {hasattr(g, 'db')}") - abort(500, "hi!! it's @justcool393! If you get this could you PM me and tell me how you got this? i'm trying to figure something out and if you can help I'll really appreciate it <3") + print(f"db?: {bool(getattr(g, 'db', None))}") # end temp logging code loggedin = cache.get(f'{SITE}_loggedin') or {} loggedout = cache.get(f'{SITE}_loggedout') or {}