Made TaskManager's Signal methods async

This commit is contained in:
RogueException
2016-01-02 01:54:25 -04:00
parent ee9045a12d
commit a49bf42552
6 changed files with 18 additions and 18 deletions

View File

@@ -434,7 +434,7 @@ namespace Discord.Net.WebSockets
var payload = (msg.Payload as JToken).ToObject<SessionDescriptionEvent>(_serializer);
_secretKey = payload.SecretKey;
SendSetSpeaking(true);
EndConnect();
await EndConnect();
}
break;
case OpCodes.Speaking: