Skip to content

Commit 827c647

Browse files
authored
use correct file path to audio cues (microsoft#166618)
fix microsoft#166617
1 parent 0043f98 commit 827c647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/audioCues/browser/audioCueService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class AudioCueService extends Disposable implements IAudioCueService {
7070
this.playingSounds.add(sound);
7171

7272
const url = FileAccess.asBrowserUri(
73-
`vs/platform/audioCues/common/media/${sound.fileName}`
73+
`vs/platform/audioCues/browser/media/${sound.fileName}`
7474
).toString();
7575
const audio = new Audio(url);
7676
audio.volume = this.getVolumeInPercent() / 100;

0 commit comments

Comments
 (0)