Fix overlapping audio.play calls due to await

This commit is contained in:
toasted-nutbread 2020-04-17 18:00:28 -04:00
parent fcbfde506a
commit 320852f2d0

View File

@ -791,10 +791,7 @@ class Display {
const expression = expressionIndex === -1 ? definition : definition.expressions[expressionIndex];
if (this.audioPlaying !== null) {
this.audioPlaying.pause();
this.audioPlaying = null;
}
this._stopPlayingAudio();
let audio, info;
try {
@ -820,6 +817,8 @@ class Display {
button.title = `${titleDefault}\n${info}`;
}
this._stopPlayingAudio();
this.audioPlaying = audio;
audio.currentTime = 0;
audio.volume = this.options.audio.volume / 100.0;
@ -838,6 +837,13 @@ class Display {
}
}
_stopPlayingAudio() {
if (this.audioPlaying !== null) {
this.audioPlaying.pause();
this.audioPlaying = null;
}
}
noteUsesScreenshot(mode) {
const optionsAnki = this.options.anki;
const fields = (mode === 'kanji' ? optionsAnki.kanji : optionsAnki.terms).fields;