Fix /clean

This commit is contained in:
calzoneman 2013-09-30 21:34:40 -05:00
parent 3666b43f7a
commit 0c52c3f17d

View file

@ -423,10 +423,12 @@ Playlist.prototype.clean = function (filter) {
if (count < matches.length) { if (count < matches.length) {
var uid = matches[count].uid; var uid = matches[count].uid;
count++; count++;
if (self.remove(uid)) {
self.channel.sendAll("delete", { self.channel.sendAll("delete", {
uid: uid uid: uid
}); });
self.remove(uid, deleteNext); }
deleteNext();
} else { } else {
// refresh meta only once, at the end // refresh meta only once, at the end
self.channel.broadcastPlaylistMeta(); self.channel.broadcastPlaylistMeta();