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

Merge pull request #5664 from thornbill/livetv-image

Fix live tv images being ignored
This commit is contained in:
Joshua M. Boniface 2024-06-05 17:50:03 -04:00 committed by GitHub
commit d898afdf10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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');