1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #521 from dkanada/nowplaying

Fix save button in now playing controller
This commit is contained in:
Vasily 2019-10-15 12:52:38 +03:00 committed by GitHub
commit 5ce69ae514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -511,7 +511,9 @@ define(["browser", "datetime", "backdrop", "libraryBrowser", "listView", "imageL
function getSaveablePlaylistItems() {
return getPlaylistItems(currentPlayer).then(function (items) {
return i.Id && i.ServerId
return items.filter(function (i) {
return i.Id && i.ServerId;
});
});
}