Browse Source

Fix internal handler

pull/505/head
Joe4evr 8 years ago
parent
commit
84daf8f7ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs

+ 1
- 1
src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs View File

@@ -515,7 +515,7 @@ namespace Discord.WebSocket
{
var audioClient = new AudioClient(this, id);
var promise = _audioConnectPromise;
audioClient.Disconnected += async ex =>
audioClient.Disconnected += async (client, ex) =>
{
//If the initial connection hasn't been made yet, reconnecting will lead to deadlocks
if (!promise.Task.IsCompleted)


Loading…
Cancel
Save