small fix to backdrop fallback logic

This commit is contained in:
chrisk325 2026-01-01 02:02:53 +05:30 committed by GitHub
parent dd1a3ed496
commit 0d416f724c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -410,7 +410,7 @@ export const useStreamsScreen = () => {
episodeId: (type === 'series' || type === 'other') && selectedEpisode ? selectedEpisode : undefined,
imdbId: imdbId || undefined,
availableStreams: streamsToPass,
backdrop: bannerImage || metadata?.banner,
backdrop: metadata?.banner || bannerImage,
videoType,
} as any);
},