Metadata won't be created when there no imported files

This commit is contained in:
Mark McDowall 2012-08-09 08:42:38 -07:00
parent ff23b883a6
commit a48dbba015
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
using System; using System;
using System.IO; using System.IO;
using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using NLog; using NLog;
using Ninject; using Ninject;
@ -83,6 +84,7 @@ namespace NzbDrone.Core.Providers
importedFiles.ForEach(file => _diskScanProvider.MoveEpisodeFile(file, true)); importedFiles.ForEach(file => _diskScanProvider.MoveEpisodeFile(file, true));
//Create Metadata for all the episode files found //Create Metadata for all the episode files found
if (importedFiles.Any())
_metadataProvider.CreateForEpisodeFiles(importedFiles); _metadataProvider.CreateForEpisodeFiles(importedFiles);
//Delete the folder only if folder is small enough //Delete the folder only if folder is small enough