mirror of https://github.com/calzoneman/sync.git
Fix possible playlist bug
This commit is contained in:
parent
dad89c823c
commit
e5af4051f6
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue