diff --git a/src/components/remotecontrol.js b/src/components/remotecontrol.js index 5e644150db..5433af6a3b 100644 --- a/src/components/remotecontrol.js +++ b/src/components/remotecontrol.js @@ -509,13 +509,7 @@ define(["browser", "datetime", "backdrop", "libraryBrowser", "listView", "imageL function getSaveablePlaylistItems() { return getPlaylistItems(currentPlayer).then(function (items) { - return items.filter(function (i) { - if (i.Id) { - return i.ServerId; - } - - return false; - }); + return i.Id && i.ServerId }); }