Ignore broken pipe and dropped connection exceptions
This commit is contained in:
parent
50b8685e44
commit
f18a78b59c
@ -76,7 +76,7 @@ namespace PluralKit.Bot
|
||||
if (e is WebhookExecutionErrorOnDiscordsEnd) return false;
|
||||
|
||||
// Socket errors are *not our problem*
|
||||
if (e is SocketException) return false;
|
||||
if (e.GetBaseException() is SocketException) return false;
|
||||
|
||||
// Tasks being cancelled for whatver reason are, you guessed it, also not our problem.
|
||||
if (e is TaskCanceledException) return false;
|
||||
|
Loading…
Reference in New Issue
Block a user