mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #6041 from grafixeyehero/Fix-list-view-item-undefined
This commit is contained in:
commit
6cae5c2646
1 changed files with 1 additions and 1 deletions
|
@ -851,7 +851,7 @@ class ItemsView {
|
|||
setTitle(null);
|
||||
getItem(params).then(function (item) {
|
||||
setTitle(item);
|
||||
if (item.Type == 'Genre') {
|
||||
if (item && item.Type == 'Genre') {
|
||||
item.ParentId = params.parentId;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue