From 0853ef45e7a069eb2a5958ca9bdeda252abce85f Mon Sep 17 00:00:00 2001 From: mplorentz Date: Thu, 5 Mar 2026 16:54:57 -0500 Subject: [PATCH] Don't show technical error message to the user --- src/app/components/VoiceRoomItem.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/components/VoiceRoomItem.svelte b/src/app/components/VoiceRoomItem.svelte index ca81dd61..658b38fb 100644 --- a/src/app/components/VoiceRoomItem.svelte +++ b/src/app/components/VoiceRoomItem.svelte @@ -7,7 +7,6 @@ import {isMobileViewport} from "@lib/html" import ProfileCircle from "@app/components/ProfileCircle.svelte" import RoomName from "@app/components/RoomName.svelte" - import {errorMessage} from "@lib/util" import {pushToast} from "@app/util/toast" import { deriveVoiceParticipants, @@ -47,7 +46,7 @@ try { await joinVoiceRoom(url, h, joinAbortController.signal) } catch (e) { - pushToast({theme: "error", message: `Failed to join voice room: ${errorMessage(e)}`}) + pushToast({theme: "error", message: "Failed to join voice room"}) } finally { isJoining = false joinAbortController = undefined