mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
New: Minimum Age setting to deal with propagation issues (Usenet only)
This commit is contained in:
parent
eeafa2cb64
commit
580f03a5bc
12 changed files with 150 additions and 5 deletions
|
@ -108,6 +108,13 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue("RssSyncInterval", value); }
|
||||
}
|
||||
|
||||
public int MinimumAge
|
||||
{
|
||||
get { return GetValueInt("MinimumAge", 0); }
|
||||
|
||||
set { SetValue("MinimumAge", value); }
|
||||
}
|
||||
|
||||
public Boolean AutoDownloadPropers
|
||||
{
|
||||
get { return GetValueBoolean("AutoDownloadPropers", true); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue