mirror of
https://github.com/ppy/osu.git
synced 2025-03-10 14:47:45 +08:00
Merge pull request #32081 from bdach/did-you-know-that-strings-have-casing
Fix hash comparison being case sensitive when choosing files for partial beatmap submission
This commit is contained in:
commit
b776993d36
@ -285,7 +285,7 @@ namespace osu.Game.Screens.Edit.Submission
|
||||
continue;
|
||||
}
|
||||
|
||||
if (localHash != onlineHash)
|
||||
if (!localHash.Equals(onlineHash, StringComparison.OrdinalIgnoreCase))
|
||||
filesToUpdate.Add(filename);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user