diff options
| author | Vasily <just.one.man@yandex.ru> | 2020-04-12 23:35:41 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2020-04-12 23:35:41 +0300 |
| commit | 30f439287266a8afd6f6e7bea01ed08eb86bf0d7 (patch) | |
| tree | 6d28ed1de43448f81738127e82cb5a965a860b39 /Emby.Server.Implementations/HttpServer | |
| parent | 61d9c9df5b4ad4b79679cccbb2a624447c824b67 (diff) | |
Fix condition flipped by https://github.com/jellyfin/jellyfin/pull/2635
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs index dd60e7a18..229e5d199 100644 --- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -553,7 +553,7 @@ namespace Emby.Server.Implementations.HttpServer || ex is OperationCanceledException || ex is SecurityException || ex is FileNotFoundException; - await ErrorHandler(ex, httpReq, ignoreStackTrace, urlToLog).ConfigureAwait(false); + await ErrorHandler(ex, httpReq, !ignoreStackTrace, urlToLog).ConfigureAwait(false); } finally { |
