1
0
Fork 0
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:
ferferga 2020-06-04 18:15:05 +02:00
parent 1591aef481
commit d04505e955

View file

@ -616,7 +616,7 @@ import 'programStyles';
itemId = item.ParentBackdropItemId;
}
if (itemId === null) {
if (!itemId) {
itemId = item.Id;
}