Skip to content

Commit 97766cc

Browse files
committed
Change preclude and preclear options case-insensitive
1 parent dba065d commit 97766cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Monitorian.Core/Models/Monitor/MonitorManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static HashSet<string> GetOptionIds(string option)
6161
.TakeWhile(x => x.success)
6262
.Select(x => x.id);
6363

64-
return new HashSet<string>(ids);
64+
return new HashSet<string>(ids, StringComparer.OrdinalIgnoreCase);
6565
}
6666

6767
#endregion

0 commit comments

Comments
 (0)