1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Fix crash when attempting to watch a replay when the storage file doesn't exist

This commit is contained in:
Dean Herbert 2022-08-30 18:18:46 +09:00
parent 0e68620f70
commit 928bce8fcd

View File

@ -25,7 +25,12 @@ namespace osu.Game.Scoring
return;
using (var stream = store.GetStream(replayFilename))
{
if (stream == null)
return;
Replay = new DatabasedLegacyScoreDecoder(rulesets, beatmaps).Parse(stream).Replay;
}
}
}
}