1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

@ -126,7 +126,13 @@ private ManualImportItem ProcessFile(string file, string downloadId, string fold
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())
{