1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Constants.cs
Mark McDowall 2235b83809 Sample file cutoff now 70MB
#ND-121 fixed
Fixed: Any file under 70MB will be treated as a sample file
2012-12-31 00:41:19 -08:00

16 lines
242 B
C#

using System.Linq;
namespace NzbDrone.Core
{
public static class Constants
{
public static long IgnoreFileSize
{
get
{
return 70.Megabytes();
}
}
}
}