Browse Source

fixed log

pull/1761/head
yebafan 4 years ago
parent
commit
e3af6957c6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/DiscordSocketClient.cs

+ 1
- 1
src/Discord.Net.WebSocket/DiscordSocketClient.cs View File

@@ -581,7 +581,7 @@ namespace Discord.WebSocket
else else
{ {
// Failed to identify // 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); await ApiClient.SendIdentifyAsync(shardID: ShardId, totalShards: TotalShards, guildSubscriptions: _guildSubscriptions, gatewayIntents: _gatewayIntents, presence: BuildCurrentStatus()).ConfigureAwait(false);
} }
} }


Loading…
Cancel
Save