increased delete folder limit size to 10MB

This commit is contained in:
kay.one 2011-07-17 16:15:37 -07:00
commit 68321c98d0
3 changed files with 11 additions and 4 deletions

View file

@ -92,7 +92,7 @@ namespace NzbDrone.Core.Providers
long size = _diskProvider.GetSize(filePath);
//If Size is less than 40MB and contains sample. Check for Size to ensure its not an episode with sample in the title
if (size < 40000000 && filePath.ToLower().Contains("sample"))
if (size < 40.Megabytes() && filePath.ToLower().Contains("sample"))
{
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
return null;