fallback to metadata banner if tmdb enrichment banner is disabled by the user

This commit is contained in:
chrisk325 2025-12-31 17:29:23 +05:30 committed by GitHub
parent 7271ed39a0
commit 6acfa2971b
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,
backdrop: bannerImage || metadata?.banner,
videoType,
} as any);
},