aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2020-09-03 00:31:42 +0200
committerClaus Vium <clausvium@gmail.com>2020-09-03 00:32:56 +0200
commit5813f8073c5bbe67a6071aed7084adc68f38fd48 (patch)
tree72047425cef5cf42b0f59ce8b27e6073da6efe32 /Emby.Server.Implementations/ApplicationHost.cs
parentb9cd6a125bd66fc4edd8f95883af8a3e21df96c6 (diff)
Move HttpListenerHost middleware up the pipeline
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 4f47d1999..5ed0ad415 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -501,7 +501,7 @@ namespace Emby.Server.Implementations
}
public Task ExecuteHttpHandlerAsync(HttpContext context, Func<Task> next)
- => _httpServer.RequestHandler(context);
+ => _httpServer.RequestHandler(context, next);
/// <summary>
/// Registers services/resources with the service collection that will be available via DI.