Update AppleTVHero.tsx

This commit is contained in:
CK 2026-03-05 14:56:33 +05:30 committed by GitHub
parent 02cecaf1ac
commit 54173cd704
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -460,7 +460,7 @@ const AppleTVHero: React.FC<AppleTVHeroProps> = ({
// Fetch video list from TMDB to get the YouTube video ID
const tmdbApiKey = await TMDBService.getInstance().getApiKey();
const videosRes = await fetch(
`https://api.themoviedb.org/3/${contentType}/${tmdbId}/videos?api_key=${tmdbApiKey}&language=en-US`
`https://api.themoviedb.org/3/${contentType}/${tmdbId}/videos?api_key=${tmdbApiKey}`
);
if (!alive) return;