mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-23 06:31:28 +00:00
Fixed: Some manually imported episodes not being marked as imported and remove from queue
Closes #4803
This commit is contained in:
parent
52d8f87c66
commit
8621ecfec1
1 changed files with 5 additions and 2 deletions
|
@ -78,9 +78,12 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Aggregation.Aggregators
|
|||
|
||||
if (episodes.Empty() && bestEpisodeInfoForEpisodes.IsPossibleSpecialEpisode)
|
||||
{
|
||||
var parsedEpisodeInfo = GetSpecialEpisodeInfo(localEpisode, bestEpisodeInfoForEpisodes);
|
||||
var parsedSpecialEpisodeInfo = GetSpecialEpisodeInfo(localEpisode, bestEpisodeInfoForEpisodes);
|
||||
|
||||
episodes = _parsingService.GetEpisodes(parsedEpisodeInfo, localEpisode.Series, localEpisode.SceneSource);
|
||||
if (parsedSpecialEpisodeInfo != null)
|
||||
{
|
||||
episodes = _parsingService.GetEpisodes(parsedSpecialEpisodeInfo, localEpisode.Series, localEpisode.SceneSource);
|
||||
}
|
||||
}
|
||||
|
||||
return episodes;
|
||||
|
|
Loading…
Reference in a new issue