From 47a0c6315ea63e7c302fc82d6af5b320deaada3d Mon Sep 17 00:00:00 2001 From: Timo K Date: Mon, 22 Sep 2025 11:21:13 +0200 Subject: [PATCH] Never skip lobby for huddles Signed-off-by: Timo K --- src/UrlParams.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UrlParams.ts b/src/UrlParams.ts index f6d135d7..d184a1ae 100644 --- a/src/UrlParams.ts +++ b/src/UrlParams.ts @@ -394,7 +394,7 @@ export const computeUrlParams = (search = "", hash = ""): UrlParams => { }; switch (intent) { case UserIntent.StartNewCall: - intentPreset.skipLobby = true; + intentPreset.skipLobby = false; break; case UserIntent.JoinExistingCall: // On desktop this will be overridden based on which button was used to join the call