diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-03-03 14:30:41 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-03-03 14:30:41 +0100 |
| commit | 6263b73d9c5659f2a6216dd2bea55df230ae3fcb (patch) | |
| tree | 14ee33d7b00d22121591469d10e357e5efa6903a | |
| parent | 1cc433eabc4813fd175b8ce63b27490663cbbcee (diff) | |
Await host startup
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 284900e87..c2e6481af 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -650,6 +650,8 @@ namespace Emby.Server.Implementations app.Use(ExecuteHttpHandlerAsync); }) .Build(); + + await Host.StartAsync(); } public async Task ExecuteWebsocketHandlerAsync(HttpContext context, Func<Task> next) |
