1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 21:10:46 +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
Unverified
+1 -1
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
{