null is not a thing in python lol

This commit is contained in:
2025-12-04 10:22:03 +03:00
parent 005d2f3b6c
commit 35483c27aa

View File

@@ -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 {