Fix #16: Use explicit 'online' key in auth_ok instead of StrEnum value
Some checks failed
Deploy Tracker / deploy (push) Failing after 4s

This commit is contained in:
markov 2026-02-26 15:16:10 +01:00
parent 21199dd4e3
commit 19bb797856

View File

@ -242,7 +242,7 @@ async def _authenticate(ws: WebSocket, token: str, on_behalf_of: str | None = No
"slug": effective_slug, "slug": effective_slug,
"lobby_chat_id": str(lobby_chat.id) if lobby_chat else None, "lobby_chat_id": str(lobby_chat.id) if lobby_chat else None,
"projects": project_list, "projects": project_list,
MemberStatus.ONLINE: manager.online_slugs, "online": manager.online_slugs,
}, },
}) })