mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed: Extra new line in release restrictions causing all releases to be rejected
This commit is contained in:
parent
2dd7fb9fdf
commit
885872ff3a
3 changed files with 17 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue