From 539d728df410c096a6807ba37619ae8171da99e4 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Thu, 8 Aug 2013 20:42:46 -0400 Subject: [PATCH] Fix weird case of playlist skipping when removing leader --- playlist.js | 1 + 1 file changed, 1 insertion(+) diff --git a/playlist.js b/playlist.js index d10a68ba..c91de926 100644 --- a/playlist.js +++ b/playlist.js @@ -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);