Post processor now deletes folders that are less than 40MB.

This commit is contained in:
kay.one 2011-10-24 22:15:20 -07:00
commit b3e4485d71
6 changed files with 27 additions and 11 deletions

View file

@ -0,0 +1,15 @@
using System.Linq;
namespace NzbDrone.Core
{
public static class Constants
{
public static long IgnoreFileSize
{
get
{
return 40.Megabytes();
}
}
}
}