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);
|
clearInterval(this._leadInterval);
|
||||||
this._leadInterval = false;
|
this._leadInterval = false;
|
||||||
}
|
}
|
||||||
|
if(this._qaInterval) {
|
||||||
|
clearInterval(this._qaInterval);
|
||||||
|
this._qaInterval = false;
|
||||||
|
}
|
||||||
for(var key in this)
|
for(var key in this)
|
||||||
delete this[key];
|
delete this[key];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue