Browse Source

Fixed a warning

pull/6/head
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)) if (!_connectedEvent.Wait(timeout, _cancelToken))
throw new TimeoutException(); throw new TimeoutException();
} }
catch (OperationCanceledException ex)
catch (OperationCanceledException)
{ {
ThrowError(); ThrowError();
} }


Loading…
Cancel
Save