From b55907bc511fc77b91ff278c18cb9d685386f172 Mon Sep 17 00:00:00 2001 From: Erik Date: Tue, 1 Apr 2025 09:26:52 +0200 Subject: [PATCH] remove console.log and insert temporary-chat=false logic --- src/routes/(app)/+layout.svelte | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/routes/(app)/+layout.svelte b/src/routes/(app)/+layout.svelte index b68cc67a0..69f8b8233 100644 --- a/src/routes/(app)/+layout.svelte +++ b/src/routes/(app)/+layout.svelte @@ -195,13 +195,16 @@ showChangelog.set($settings?.version !== $config.version); } - if ($page.url.searchParams.get('temporary-chat') === 'true') { + // check if searchParam is set, if yes & user is allowed to use param, then param > permission + // If "temporary-chat=true" is set in the URL, always enable temporary chat + const searchParam = $page.url.searchParams.get('temporary-chat'); + if (searchParam === 'true') { temporaryChatEnabled.set(true); - } - - console.log($user.permissions); - - if ($user?.permissions?.chat?.temporary_enforced) { + // If "temporary-chat=false" is set in the URL, always disable temporary chat + } else if (searchParam === 'false') { + temporaryChatEnabled.set(false); + // If "temporary-chat" is not set in the URL, check if user has permission to use temporary chat + } else if ($user?.permissions?.chat?.temporary_enforced) { temporaryChatEnabled.set(true); }