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

fixes #887 - Support ttml subtitle output

This commit is contained in:
Luke Pulverenti 2014-08-05 19:59:24 -04:00
parent 90c301e86f
commit bc12a6457d
2 changed files with 28 additions and 4 deletions

View file

@ -233,10 +233,7 @@
supportsPlaylists: function (item) {
if (item.Type == 'Playlist') {
return false;
}
return item.MediaType == "Audio" || item.MediaType == "Video" || item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "MusicGenre" || item.Type == "Series" || item.Type == "Season";
return item.SupportsPlaylists;
}
};