Browse Source

Minor edit

tags/docs-0.9
RogueException 9 years ago
parent
commit
bb682936cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/DiscordClient.cs

+ 1
- 1
src/Discord.Net/DiscordClient.cs View File

@@ -114,7 +114,7 @@ namespace Discord
//Networking //Networking
ClientAPI = new RestClient(Config, DiscordConfig.ClientAPIUrl, Log.CreateLogger("ClientAPI")); ClientAPI = new RestClient(Config, DiscordConfig.ClientAPIUrl, Log.CreateLogger("ClientAPI"));
StatusAPI = new RestClient(Config, DiscordConfig.StatusAPIUrl, Log.CreateLogger("StatusAPI")); StatusAPI = new RestClient(Config, DiscordConfig.StatusAPIUrl, Log.CreateLogger("StatusAPI"));
GatewaySocket = new GatewaySocket(this, _serializer, Log.CreateLogger("GatewaySocket"));
GatewaySocket = new GatewaySocket(this, _serializer, Log.CreateLogger("Gateway"));
GatewaySocket.Connected += (s, e) => GatewaySocket.Connected += (s, e) =>
{ {
if (State == ConnectionState.Connecting) if (State == ConnectionState.Connecting)


Loading…
Cancel
Save