diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index f1f2a9726..e4e558944 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -265,7 +265,9 @@ Object.defineProperty(WebAudioSound.prototype, 'detune', { */ Object.defineProperty(WebAudioSound.prototype, 'seek', { get: function () { - return this.getCurrentTime(); + if (this.isPlaying) { + return this.getCurrentTime(); + } }, set: function (value) { }