We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d28a86 + 5e32d30 commit 016a3fdCopy full SHA for 016a3fd
src/vs/platform/audioCues/browser/audioCueService.ts
@@ -74,6 +74,7 @@ export class AudioCueService extends Disposable implements IAudioCueService {
74
const sound = this.sounds.get(url);
75
if (sound) {
76
sound.volume = this.getVolumeInPercent() / 100;
77
+ sound.currentTime = 0;
78
await sound.play();
79
} else {
80
const playedSound = await playAudio(url, this.getVolumeInPercent() / 100);
0 commit comments