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

Fix live tv images being ignored

This commit is contained in:
Bill Thornton 2024-06-05 17:44:50 -04:00
parent 52aa8ebd49
commit 238b44f1bb

View file

@ -399,7 +399,6 @@ function getUserViews(apiClient, userId) {
list.push(view); list.push(view);
if (view.CollectionType == 'livetv') { if (view.CollectionType == 'livetv') {
view.ImageTags = {};
view.icon = 'live_tv'; view.icon = 'live_tv';
const guideView = Object.assign({}, view); const guideView = Object.assign({}, view);
guideView.Name = globalize.translate('Guide'); guideView.Name = globalize.translate('Guide');