aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily <just.one.man@yandex.ru>2020-04-12 23:35:41 +0300
committerVasily <just.one.man@yandex.ru>2020-04-12 23:35:41 +0300
commit30f439287266a8afd6f6e7bea01ed08eb86bf0d7 (patch)
tree6d28ed1de43448f81738127e82cb5a965a860b39
parent61d9c9df5b4ad4b79679cccbb2a624447c824b67 (diff)
Fix condition flipped by https://github.com/jellyfin/jellyfin/pull/2635
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs2
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
{