Merge pull request #13251 from smoogipoo/fix-handleframe-crash

Fix HandleFrame crashing when not playing
This commit is contained in:
Dean Herbert
2021-05-31 12:02:23 +09:00
committed by GitHub

View File

@ -235,6 +235,9 @@ namespace osu.Game.Online.Spectator
{
Debug.Assert(ThreadSafety.IsUpdateThread);
if (!IsPlaying)
return;
if (frame is IConvertibleReplayFrame convertible)
pendingFrames.Enqueue(convertible.ToLegacy(currentBeatmap));