|
|
@ -231,8 +231,8 @@ namespace NzbDrone.Core.Configuration
|
|
|
|
|
|
|
|
|
|
|
|
public string ReleaseRestrictions
|
|
|
|
public string ReleaseRestrictions
|
|
|
|
{
|
|
|
|
{
|
|
|
|
get { return GetValue("ReleaseRestrictions", String.Empty); }
|
|
|
|
get { return GetValue("ReleaseRestrictions", String.Empty).Trim('\r', '\n'); }
|
|
|
|
set { SetValue("ReleaseRestrictions", value); }
|
|
|
|
set { SetValue("ReleaseRestrictions", value.Trim('\r', '\n')); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Int32 RssSyncInterval
|
|
|
|
public Int32 RssSyncInterval
|
|
|
|