mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix cases where itemId was also undefined during the previous logic
This commit is contained in:
parent
1591aef481
commit
d04505e955
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ import 'programStyles';
|
|||
itemId = item.ParentBackdropItemId;
|
||||
}
|
||||
|
||||
if (itemId === null) {
|
||||
if (!itemId) {
|
||||
itemId = item.Id;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue