From 0ddf05746a67c4de299239bccef217b33ef5925d Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Fri, 3 Apr 2026 16:48:25 +1100 Subject: [PATCH] fix: update sound source mappings to use local file paths --- src/app/features/call/CallSounds.ts | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/src/app/features/call/CallSounds.ts b/src/app/features/call/CallSounds.ts index 0d094c9..a9df927 100644 --- a/src/app/features/call/CallSounds.ts +++ b/src/app/features/call/CallSounds.ts @@ -1,11 +1,4 @@ /* eslint-disable no-console */ -import MicMuteUrl from '../../../../public/sound/Mic_Mute.ogg'; -import MicUnmutedUrl from '../../../../public/sound/Mic_Unmuted.ogg'; -import SpeakersDeafenUrl from '../../../../public/sound/Speakers_Deafen.ogg'; -import SpeakersUndeafenUrl from '../../../../public/sound/Speakers_Undeafen.ogg'; -import CallJoinedUrl from '../../../../public/sound/Call_Joined.ogg'; -import CallDepartUrl from '../../../../public/sound/Call_Depart.ogg'; -import CallDialingUrl from '../../../../public/sound/Call_Dialing.ogg'; /** * Sound types that can be played during a call @@ -21,16 +14,16 @@ export enum CallSoundType { } /** - * Maps sound types to their resolved Vite asset URLs + * Maps sound types to their URL paths (served from public folder) */ const SOUND_SOURCES: Record = { - [CallSoundType.MicMute]: MicMuteUrl, - [CallSoundType.MicUnmute]: MicUnmutedUrl, - [CallSoundType.Deafen]: SpeakersDeafenUrl, - [CallSoundType.Undeafen]: SpeakersUndeafenUrl, - [CallSoundType.CallJoined]: CallJoinedUrl, - [CallSoundType.CallDepart]: CallDepartUrl, - [CallSoundType.CallDialing]: CallDialingUrl, + [CallSoundType.MicMute]: './sound/Mic_Mute.ogg', + [CallSoundType.MicUnmute]: './sound/Mic_Unmuted.ogg', + [CallSoundType.Deafen]: './sound/Speakers_Deafen.ogg', + [CallSoundType.Undeafen]: './sound/Speakers_Undeafen.ogg', + [CallSoundType.CallJoined]: './sound/Call_Joined.ogg', + [CallSoundType.CallDepart]: './sound/Call_Depart.ogg', + [CallSoundType.CallDialing]: './sound/Call_Dialing.ogg', }; /**