fix: update sound source mappings to use local file paths

This commit is contained in:
2026-04-03 16:48:25 +11:00
parent 6ca8e59b0b
commit 0ddf05746a

View File

@@ -1,11 +1,4 @@
/* eslint-disable no-console */ /* 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 * 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, string> = { const SOUND_SOURCES: Record<CallSoundType, string> = {
[CallSoundType.MicMute]: MicMuteUrl, [CallSoundType.MicMute]: './sound/Mic_Mute.ogg',
[CallSoundType.MicUnmute]: MicUnmutedUrl, [CallSoundType.MicUnmute]: './sound/Mic_Unmuted.ogg',
[CallSoundType.Deafen]: SpeakersDeafenUrl, [CallSoundType.Deafen]: './sound/Speakers_Deafen.ogg',
[CallSoundType.Undeafen]: SpeakersUndeafenUrl, [CallSoundType.Undeafen]: './sound/Speakers_Undeafen.ogg',
[CallSoundType.CallJoined]: CallJoinedUrl, [CallSoundType.CallJoined]: './sound/Call_Joined.ogg',
[CallSoundType.CallDepart]: CallDepartUrl, [CallSoundType.CallDepart]: './sound/Call_Depart.ogg',
[CallSoundType.CallDialing]: CallDialingUrl, [CallSoundType.CallDialing]: './sound/Call_Dialing.ogg',
}; };
/** /**