1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-07 17:03:22 +08:00

Merge pull request #31640 from frenzibyte/discord-rpc-ux

Hide Discord RPC error messages away from user attention
This commit is contained in:
Dean Herbert 2025-01-24 14:36:13 +09:00 committed by GitHub
commit 4ae6dfd790
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ namespace osu.Desktop
};
client.OnReady += onReady;
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Message} ({e.Code})", LoggingTarget.Network, LogLevel.Error);
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Message} ({e.Code})", LoggingTarget.Network);
try
{