mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Post processor now deletes folders that are less than 40MB.
This commit is contained in:
parent
3dd7b3d768
commit
b3e4485d71
6 changed files with 27 additions and 11 deletions
15
NzbDrone.Core/Constants.cs
Normal file
15
NzbDrone.Core/Constants.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Linq;
|
||||
|
||||
namespace NzbDrone.Core
|
||||
{
|
||||
public static class Constants
|
||||
{
|
||||
public static long IgnoreFileSize
|
||||
{
|
||||
get
|
||||
{
|
||||
return 40.Megabytes();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue