Don't show technical error message to the user

This commit is contained in:
mplorentz
2026-03-05 16:54:57 -05:00
committed by hodlbod
parent 703d573f96
commit c18154915d
+1 -2
View File
@@ -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