1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

Fixed: TheXEM mappings not used properly when parsing season packs

This commit is contained in:
Taloth Saldono
2021-05-07 20:16:09 +02:00
parent a8a9399469
commit 87f10bf7bb
3 changed files with 22 additions and 1 deletions
+8 -1
View File
@@ -207,7 +207,14 @@ namespace NzbDrone.Core.Parser
{
if (parsedEpisodeInfo.FullSeason)
{
return _episodeService.GetEpisodesBySeason(series.Id, mappedSeasonNumber);
if (series.UseSceneNumbering && sceneSource)
{
return _episodeService.GetEpisodesBySceneSeason(series.Id, mappedSeasonNumber);
}
else
{
return _episodeService.GetEpisodesBySeason(series.Id, mappedSeasonNumber);
}
}
if (parsedEpisodeInfo.IsDaily)