Fixed: Manual Import didn't revert to parent folder when trying to parse series leading to issues with obfuscated releases.

This commit is contained in:
Taloth Saldono 2016-02-09 23:47:35 +01:00
parent 68540cb479
commit 5550565d6a
1 changed files with 7 additions and 1 deletions

View File

@ -126,7 +126,13 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Manual
folder = new FileInfo(file).Directory.FullName;
}
var series = _parsingService.GetSeries(Path.GetFileNameWithoutExtension(file));
Series series = null;
var parsedEpisodeInfo = Parser.Parser.ParsePath(folder.GetRelativePath(file));
if (parsedEpisodeInfo != null)
{
series = _parsingService.GetSeries(parsedEpisodeInfo.SeriesTitle);
}
if (series == null && downloadId.IsNotNullOrWhiteSpace())
{