fix: tmdb fetch failure due ISP blocks in India

Signed-off-by: Megh Rathod <me@meghrathod.dev>
This commit is contained in:
Megh Rathod 2024-04-11 23:34:40 +05:30
parent cf8018c9e9
commit 8a9def00de
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ export function decodeTMDBId(
};
}
const baseURL = "https://api.themoviedb.org/3";
const baseURL = "https://api.tmdb.org/3";
const apiKey = conf().TMDB_READ_API_KEY;