Sample file cutoff now 70MB

#ND-121 fixed
Fixed: Any file under 70MB will be treated as a sample file
This commit is contained in:
Mark McDowall 2012-12-31 00:41:19 -08:00
commit 2235b83809
3 changed files with 18 additions and 18 deletions

View file

@ -110,7 +110,7 @@ namespace NzbDrone.Core.Providers
long size = _diskProvider.GetSize(filePath);
//Skip any file under 40MB - New samples don't even have sample in the name...
//Skip any file under 70MB - New samples don't even have sample in the name...
if (size < Constants.IgnoreFileSize)
{
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);