1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 06:57:51 +08:00

Re-enable connection retrying on discord connector

This commit is contained in:
Bartłomiej Dach 2023-07-17 19:19:03 +02:00
parent a6b1559e1f
commit 17aac0694e
No known key found for this signature in database

View File

@ -54,9 +54,6 @@ namespace osu.Desktop
client.OnReady += onReady;
// safety measure for now, until we performance test / improve backoff for failed connections.
client.OnConnectionFailed += (_, _) => client.Deinitialize();
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Code} {e.Message}", LoggingTarget.Network);
config.BindWith(OsuSetting.DiscordRichPresence, privacyMode);