Browse Source

Fix debug pragma

pull/1923/head
quin lynch 3 years ago
parent
commit
345f06845a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/DiscordSocketApiClient.cs

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

@@ -171,7 +171,7 @@ namespace Discord.API
_gatewayUrl = $"{gatewayResponse.Url}?v={DiscordConfig.APIVersion}&encoding={DiscordSocketConfig.GatewayEncoding}&compress=zlib-stream"; _gatewayUrl = $"{gatewayResponse.Url}?v={DiscordConfig.APIVersion}&encoding={DiscordSocketConfig.GatewayEncoding}&compress=zlib-stream";
} }


#if DEBUG
#if DEBUG_PACKETS
Console.WriteLine("Connecting to gateway: " + _gatewayUrl); Console.WriteLine("Connecting to gateway: " + _gatewayUrl);
#endif #endif




Loading…
Cancel
Save