From aa4fca7177f923ad8aadc92cddce9760670b6fd6 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Fri, 5 Jun 2015 19:05:21 +0200 Subject: [PATCH] Fixed: Torznab advanced setting 'Enable RageID Lookup' had wrong UI type. fixes #599 --- src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs b/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs index c7a803dc5..0745b0af9 100644 --- a/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs +++ b/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs @@ -68,7 +68,7 @@ public TorznabSettings() [FieldDefinition(4, Label = "Additional Parameters", HelpText = "Additional Torznab parameters", Advanced = true)] public string AdditionalParameters { get; set; } - [FieldDefinition(5, Label = "Enable RageID Lookup", HelpText = "Disable this if your tracker doesn't have tvrage ids, Sonarr will then use (more expensive) title queries.", Advanced = true)] + [FieldDefinition(5, Type = FieldType.Checkbox, Label = "Enable RageID Lookup", HelpText = "Disable this if your tracker doesn't have tvrage ids, Sonarr will then use (more expensive) title queries.", Advanced = true)] public bool EnableRageIDLookup { get; set; } public NzbDroneValidationResult Validate()