Put Boolean operators at beginning of lines instead of the end
This commit is contained in:
parent
eadad73117
commit
de634203d8
|
@ -548,11 +548,11 @@ namespace Emby.Server.Implementations.HttpServer
|
|||
}
|
||||
|
||||
bool ignoreStackTrace =
|
||||
ex is SocketException ||
|
||||
ex is IOException ||
|
||||
ex is OperationCanceledException ||
|
||||
ex is SecurityException ||
|
||||
ex is FileNotFoundException;
|
||||
ex is SocketException
|
||||
|| ex is IOException
|
||||
|| ex is OperationCanceledException
|
||||
|| ex is SecurityException
|
||||
|| ex is FileNotFoundException;
|
||||
await ErrorHandler(ex, httpReq, ignoreStackTrace).ConfigureAwait(false);
|
||||
}
|
||||
finally
|
||||
|
|
Loading…
Reference in New Issue
Block a user