From 2b2f56b3abf953daa5dd8a9a5f2fa8c4e444bf77 Mon Sep 17 00:00:00 2001 From: Alexander Tarasov Date: Sun, 5 Oct 2025 20:55:59 +0300 Subject: [PATCH] fix login page not showing correctly --- web/pages/index.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/pages/index.py b/web/pages/index.py index 53d02da..a004311 100644 --- a/web/pages/index.py +++ b/web/pages/index.py @@ -9,6 +9,8 @@ from web.misc import check_user async def page(): ui.page_title("Watch With Friends") + await ui.context.client.connected() + if not await check_user(): await handle_login()