1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-20 13:17:17 +00:00

Remove duplicated processing of unparsed paths

This commit is contained in:
Mark McDowall 2023-05-06 21:53:01 -07:00
parent 5bb03a9ddf
commit 95b52e630a

View file

@ -545,12 +545,6 @@ namespace NzbDrone.Core.Parser
result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name);
}
if (result == null)
{
Logger.Debug("Attempting to parse episode info using directory and file names. {0}", fileInfo.Directory.Name);
result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name);
}
if (result == null)
{
Logger.Debug("Attempting to parse episode info using directory name. {0}", fileInfo.Directory.Name);