Browse Source

Fixed a warning

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

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

@@ -610,7 +610,7 @@ namespace Discord.WebSockets.Voice
if (!_connectedEvent.Wait(timeout, _cancelToken))
throw new TimeoutException();
}
catch (OperationCanceledException ex)
catch (OperationCanceledException)
{
ThrowError();
}


Loading…
Cancel
Save