Fix weird case of playlist skipping when removing leader

This commit is contained in:
calzoneman 2013-08-08 20:42:46 -04:00
parent e53a0eee4c
commit 539d728df4
1 changed files with 1 additions and 0 deletions

View File

@ -458,6 +458,7 @@ Playlist.prototype.lead = function(lead) {
this._leadInterval = false;
}
else if(this.leading && !this._leadInterval) {
this._lastUpdate = Date.now();
this._leadInterval = setInterval(function() {
pl._leadLoop();
}, 1000);