From c6fa883662fd58df31173f35826cb10a30fe7b2c Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 16 Feb 2017 09:19:28 -0800 Subject: [PATCH] Fixed: Saving nyaa settings Fixes #1687 --- src/NzbDrone.Core/Indexers/Nyaa/NyaaSettings.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Nyaa/NyaaSettings.cs b/src/NzbDrone.Core/Indexers/Nyaa/NyaaSettings.cs index 77315c455..5977c2782 100644 --- a/src/NzbDrone.Core/Indexers/Nyaa/NyaaSettings.cs +++ b/src/NzbDrone.Core/Indexers/Nyaa/NyaaSettings.cs @@ -1,4 +1,4 @@ -using FluentValidation; +using FluentValidation; using NzbDrone.Core.Annotations; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Validation; @@ -25,10 +25,10 @@ namespace NzbDrone.Core.Indexers.Nyaa } [FieldDefinition(0, Label = "Website URL")] - public string BaseUrl { get; } + public string BaseUrl { get; set; } [FieldDefinition(1, Label = "Additional Parameters", Advanced = true, HelpText = "Please note if you change the category you will have to add required/restricted rules about the subgroups to avoid foreign language releases.")] - public string AdditionalParameters { get; } + public string AdditionalParameters { get; set; } public NzbDroneValidationResult Validate() {