fix: Cancel reconnection when 4014 (#1603)
* Cancel reconnection when 4014 * Missed an else
This commit is contained in:
@@ -44,6 +44,8 @@ namespace Discord
|
|||||||
var ex2 = ex as WebSocketClosedException;
|
var ex2 = ex as WebSocketClosedException;
|
||||||
if (ex2?.CloseCode == 4006)
|
if (ex2?.CloseCode == 4006)
|
||||||
CriticalError(new Exception("WebSocket session expired", ex));
|
CriticalError(new Exception("WebSocket session expired", ex));
|
||||||
|
else if (ex2?.CloseCode == 4014)
|
||||||
|
CriticalError(new Exception("WebSocket connection was closed", ex));
|
||||||
else
|
else
|
||||||
Error(new Exception("WebSocket connection was closed", ex));
|
Error(new Exception("WebSocket connection was closed", ex));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user