diff --git a/playlist.js b/playlist.js index 3dee6bee..5a9e403c 100644 --- a/playlist.js +++ b/playlist.js @@ -124,6 +124,10 @@ Playlist.prototype.die = function () { clearInterval(this._leadInterval); this._leadInterval = false; } + if(this._qaInterval) { + clearInterval(this._qaInterval); + this._qaInterval = false; + } for(var key in this) delete this[key]; }