mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
fix(discover): 🌐 Localize episodes names in TV details (#4467) [skip ci]
This commit is contained in:
parent
2cf67bf9b8
commit
35806ea2d2
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ namespace Ombi.Core.Engine.V2
|
||||||
|
|
||||||
foreach (var tvSeason in show.seasons.Where(x => x.season_number != 0)) // skip the first season
|
foreach (var tvSeason in show.seasons.Where(x => x.season_number != 0)) // skip the first season
|
||||||
{
|
{
|
||||||
var seasonEpisodes = (await _movieApi.GetSeasonEpisodes(show.id, tvSeason.season_number, token));
|
var seasonEpisodes = (await _movieApi.GetSeasonEpisodes(show.id, tvSeason.season_number, token, langCode));
|
||||||
|
|
||||||
MapSeasons(mapped.SeasonRequests, tvSeason, seasonEpisodes);
|
MapSeasons(mapped.SeasonRequests, tvSeason, seasonEpisodes);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue