mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-21 08:41:57 +00:00
small fix to backdrop fallback logic
This commit is contained in:
parent
dd1a3ed496
commit
0d416f724c
1 changed files with 1 additions and 1 deletions
|
|
@ -410,7 +410,7 @@ export const useStreamsScreen = () => {
|
||||||
episodeId: (type === 'series' || type === 'other') && selectedEpisode ? selectedEpisode : undefined,
|
episodeId: (type === 'series' || type === 'other') && selectedEpisode ? selectedEpisode : undefined,
|
||||||
imdbId: imdbId || undefined,
|
imdbId: imdbId || undefined,
|
||||||
availableStreams: streamsToPass,
|
availableStreams: streamsToPass,
|
||||||
backdrop: bannerImage || metadata?.banner,
|
backdrop: metadata?.banner || bannerImage,
|
||||||
videoType,
|
videoType,
|
||||||
} as any);
|
} as any);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue