From dadd796737951f5620dc4a9b903c50fafe88c72f Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Wed, 17 Aug 2022 20:40:16 -0500 Subject: [PATCH] New: (UI) Indicate Custom Formats are Case Insensitive --- .../CustomFormats/Specifications/RegexSpecificationBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/CustomFormats/Specifications/RegexSpecificationBase.cs b/src/NzbDrone.Core/CustomFormats/Specifications/RegexSpecificationBase.cs index ead5481eb..4729dd0f6 100644 --- a/src/NzbDrone.Core/CustomFormats/Specifications/RegexSpecificationBase.cs +++ b/src/NzbDrone.Core/CustomFormats/Specifications/RegexSpecificationBase.cs @@ -21,7 +21,7 @@ public abstract class RegexSpecificationBase : CustomFormatSpecificationBase protected Regex _regex; protected string _raw; - [FieldDefinition(1, Label = "Regular Expression")] + [FieldDefinition(1, Label = "Regular Expression", HelpText = "Case Insensitive")] public string Value { get => _raw;