mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
Metadata won't be created when there no imported files
This commit is contained in:
parent
ff23b883a6
commit
a48dbba015
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using NLog;
|
||||
using Ninject;
|
||||
@ -83,7 +84,8 @@ public virtual void ProcessDownload(DirectoryInfo subfolderInfo)
|
||||
importedFiles.ForEach(file => _diskScanProvider.MoveEpisodeFile(file, true));
|
||||
|
||||
//Create Metadata for all the episode files found
|
||||
_metadataProvider.CreateForEpisodeFiles(importedFiles);
|
||||
if (importedFiles.Any())
|
||||
_metadataProvider.CreateForEpisodeFiles(importedFiles);
|
||||
|
||||
//Delete the folder only if folder is small enough
|
||||
if (_diskProvider.GetDirectorySize(subfolderInfo.FullName) < Constants.IgnoreFileSize)
|
||||
|
Loading…
Reference in New Issue
Block a user