From 35483c27aaf9c41d49866fe1bde1526f0bf71be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Thu, 4 Dec 2025 10:22:03 +0300 Subject: [PATCH] null is not a thing in python lol --- app/routes/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/api.py b/app/routes/api.py index 9e0375b..bfd671b 100644 --- a/app/routes/api.py +++ b/app/routes/api.py @@ -217,7 +217,7 @@ def bookmark_thread(thread_id): @bp.get('/current-user') def get_current_user_info(): if not is_logged_in(): - return {'user': null} + return {'user': None} user = get_active_user() return {