1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/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();
}
}
}
}