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

update subtitles in edge

This commit is contained in:
Luke Pulverenti 2016-09-02 11:56:19 -04:00
parent 68bd2a782c
commit f5ea8f49e9
3 changed files with 19 additions and 34 deletions

View file

@ -4,22 +4,7 @@
return ApiClient.getUserViews({}, userId).then(function (result) {
var items = result.Items;
var list = [];
for (var i = 0, length = items.length; i < length; i++) {
var view = items[i];
if (AppInfo.isNativeApp && browserInfo.safari && view.CollectionType == 'livetv') {
continue;
}
list.push(view);
}
return list;
return result.Items;
});
}