mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
User configurable RSS Sync Time
New: RSS Sync Interval is now user configurable (Default 25 minutes)
This commit is contained in:
parent
23f8f534fc
commit
8280561e11
9 changed files with 84 additions and 7 deletions
|
@ -532,6 +532,12 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("RecycleBin", value); }
|
||||
}
|
||||
|
||||
public virtual int RssSyncInterval
|
||||
{
|
||||
get { return GetValueInt("RssSyncInterval", 25); }
|
||||
set { SetValue("RssSyncInterval", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue