diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index 716dd449c..11ea3a408 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -258,9 +258,12 @@ Object.defineProperty(WebAudioSound.prototype, 'seek', { if (this.isPlaying) { return this.getCurrentTime(); } - else { + else if (this.isPaused) { return this.currentConfig.seek; } + else { + return 0; + } }, set: function (value) { value = Math.min(Math.max(0, value), this.duration);