1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 21:01:01 +08:00

Use better method of ignore case comparison

This commit is contained in:
Dean Herbert
2024-01-09 13:13:32 +09:00
Unverified
parent 7d57a668ab
commit 172fe53099
+1 -1
View File
@@ -137,7 +137,7 @@ namespace osu.Game.Overlays
wikiData.Value = response;
path.Value = response.Path;
if (response.Layout == INDEX_PATH.ToLowerInvariant())
if (response.Layout.Equals(INDEX_PATH, StringComparison.OrdinalIgnoreCase))
{
LoadDisplay(new WikiMainPage
{