ParseSeriesName will now return normalized version of the title if it doesn't match any predefined

PostDownload provider will skip subfolders that are known series folders.
This commit is contained in:
kay.one 2011-12-10 10:54:16 -08:00
commit e269494ff8
6 changed files with 54 additions and 17 deletions

View file

@ -36,7 +36,10 @@ namespace NzbDrone.Core.Providers
{
try
{
ProcessDownload(new DirectoryInfo(subfolder));
if (!_seriesProvider.SeriesPathExists(subfolder))
{
ProcessDownload(new DirectoryInfo(subfolder));
}
}
catch (Exception e)
{