mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Fixed: Extra new line in release restrictions causing all releases to be rejected
This commit is contained in:
@@ -231,8 +231,8 @@ namespace NzbDrone.Core.Configuration
|
||||
|
||||
public string ReleaseRestrictions
|
||||
{
|
||||
get { return GetValue("ReleaseRestrictions", String.Empty); }
|
||||
set { SetValue("ReleaseRestrictions", value); }
|
||||
get { return GetValue("ReleaseRestrictions", String.Empty).Trim('\r', '\n'); }
|
||||
set { SetValue("ReleaseRestrictions", value.Trim('\r', '\n')); }
|
||||
}
|
||||
|
||||
public Int32 RssSyncInterval
|
||||
|
||||
Reference in New Issue
Block a user