1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 10:22:56 +08:00

Merge pull request #19227 from peppy/fix-spectator-client-error-noise

Fix `BeginPlayingInternal` firing actual errors when beatmap not available online
This commit is contained in:
Dan Balasescu 2022-07-19 19:54:53 +09:00 committed by GitHub
commit 245269f6d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,10 +66,10 @@ namespace osu.Game.Online.Spectator
await connector.Reconnect();
await BeginPlayingInternal(state);
return;
}
throw;
// Exceptions can occur if, for instance, the locally played beatmap doesn't have a server-side counterpart.
// For now, let's ignore these so they don't cause unobserved exceptions to appear to the user (and sentry).
}
}