From e3af6957c6514918d5dcaf7c970493d870324dc1 Mon Sep 17 00:00:00 2001 From: yebafan Date: Sun, 31 Jan 2021 02:11:30 +0100 Subject: [PATCH] fixed log --- src/Discord.Net.WebSocket/DiscordSocketClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/DiscordSocketClient.cs b/src/Discord.Net.WebSocket/DiscordSocketClient.cs index 96c043195..35262fd8f 100644 --- a/src/Discord.Net.WebSocket/DiscordSocketClient.cs +++ b/src/Discord.Net.WebSocket/DiscordSocketClient.cs @@ -581,7 +581,7 @@ namespace Discord.WebSocket else { // Failed to identify - await _gatewayLogger.WarningAsync("Failed to resume previous session").ConfigureAwait(false); + await _gatewayLogger.WarningAsync("Failed to identify").ConfigureAwait(false); await ApiClient.SendIdentifyAsync(shardID: ShardId, totalShards: TotalShards, guildSubscriptions: _guildSubscriptions, gatewayIntents: _gatewayIntents, presence: BuildCurrentStatus()).ConfigureAwait(false); } }