Browse Source

Improve poster url quality

pull/583/head
mrjvs 2 years ago
parent
commit
12f30bc42f
  1. 2
      src/backend/metadata/tmdb.ts

2
src/backend/metadata/tmdb.ts

@ -215,7 +215,7 @@ export function getMediaDetails< @@ -215,7 +215,7 @@ export function getMediaDetails<
}
export function getMediaPoster(posterPath: string | null): string | undefined {
if (posterPath) return `https://image.tmdb.org/t/p/w185/${posterPath}`;
if (posterPath) return `https://image.tmdb.org/t/p/w342/${posterPath}`;
}
export async function getEpisodes(

Loading…
Cancel
Save