feat: higher poster quality

This commit is contained in:
Adrian Castro
2024-03-08 16:36:59 +01:00
parent f272d6614d
commit 7e035e823a
2 changed files with 5 additions and 5 deletions

View File

@@ -5,5 +5,5 @@ const TMDB_API_KEY =
export const tmdb = new TMDB(TMDB_API_KEY);
export function getMediaPoster(posterPath: string): string {
return `https://image.tmdb.org/t/p/w185/${posterPath}`;
return `https://image.tmdb.org/t/p/w500/${posterPath}`;
}