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

Merge pull request #5787 from grafixeyehero/Fix-ParentThumbImage

Fix parent thumb image for next up and continue watching in experimental layout
This commit is contained in:
Bill Thornton 2024-07-15 15:43:23 -04:00 committed by GitHub
commit ddb9f66609
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 11 deletions

View file

@ -759,8 +759,8 @@ const fetchGetSectionItems = async (
imageTypeLimit: 1,
enableImageTypes: [
ImageType.Primary,
ImageType.Backdrop,
ImageType.Thumb
ImageType.Thumb,
ImageType.Backdrop
],
enableTotalRecordCount: false,
...section.parametersOptions
@ -783,7 +783,11 @@ const fetchGetSectionItems = async (
ItemFields.MediaSourceCount
],
imageTypeLimit: 1,
enableImageTypes: [ImageType.Thumb],
enableImageTypes: [
ImageType.Primary,
ImageType.Thumb,
ImageType.Backdrop
],
enableTotalRecordCount: false,
...section.parametersOptions
},