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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user