Skip to content

Commit c60e3c5

Browse files
committed
Undo string comparison change.
1 parent d9e9264 commit c60e3c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ModuleManager/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static bool Contains(this string str, string value, out int index)
3030
if (str == null) throw new ArgumentNullException(nameof(str));
3131
if (value == null) throw new ArgumentNullException(nameof(value));
3232

33-
index = str.IndexOf(value, StringComparison.Ordinal);
33+
index = str.IndexOf(value, StringComparison.CurrentCultureIgnoreCase);
3434
return index != -1;
3535
}
3636
}

0 commit comments

Comments
 (0)