Browse Source

v4 bugfix

pull/44/head
RogueException 9 years ago
parent
commit
ce23943b45
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/Net/WebSockets/GatewaySocket.cs

+ 1
- 1
src/Discord.Net/Net/WebSockets/GatewaySocket.cs View File

@@ -46,7 +46,7 @@ namespace Discord.Net.WebSockets
string url = $"{gatewayResponse.Url}?encoding=json&v=4";
Logger.Verbose($"Login successful, gateway: {url}");

Host = gatewayResponse.Url;
Host = url;
await BeginConnect(parentCancelToken).ConfigureAwait(false);
if (SessionId == null)
SendIdentify(_rest.Token);


Loading…
Cancel
Save