fix(api): lookup shows using english title only (#2911)

Fixes most of the time irrelevant lookup list when using localized TMDB metadata. #2801
pull/2913/head
Gylesie 2 years ago committed by GitHub
parent ebd22ffcea
commit 004e1bb17e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -191,7 +191,7 @@ serviceRoutes.get<{ tmdbId: string }>(
try {
const tv = await tmdb.getTvShow({
tvId: Number(req.params.tmdbId),
language: req.locale ?? (req.query.language as string),
language: 'en',
});
const response = await sonarr.getSeriesByTitle(tv.name);

Loading…
Cancel
Save