mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Fix one more missed occurrence
This commit is contained in:
parent
88ffcb9234
commit
83482ca15c
@ -57,7 +57,7 @@ namespace osu.Game.Scoring
|
|||||||
if (archive == null)
|
if (archive == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
using (var stream = archive.GetStream(archive.Filenames.First(f => f.EndsWith(".osr"))))
|
using (var stream = archive.GetStream(archive.Filenames.First(f => f.EndsWith(".osr", StringComparison.OrdinalIgnoreCase))))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user