mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 10:28:18 -07:00
Backport pull request #6041 from jellyfin-web/release-10.9.z
Fix list view item undefined
Original-merge: 6cae5c2646
Merged-by: thornbill <thornbill@users.noreply.github.com>
Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
parent
0ae080a150
commit
44ee208768
@ -856,7 +856,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…
Reference in New Issue
Block a user