aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-04-04 20:40:50 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-04-04 20:40:50 -0400
commitaee6a1b4764869143edab160eef4d6fb111032a2 (patch)
tree4352d78f3bddbcb7b31b821424f9af9e7ef281b5 /Jellyfin.Server/Program.cs
parent5d648bf54f3c0fe503f8fdebb58a72b8c5e64673 (diff)
Remove unnecessary async and parameter from ApplicationHost initialization method
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 83170c6ae..56017cf89 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -202,7 +202,7 @@ namespace Jellyfin.Server
}
ServiceCollection serviceCollection = new ServiceCollection();
- await appHost.InitAsync(serviceCollection, startupConfig).ConfigureAwait(false);
+ appHost.Init(serviceCollection);
var webHost = CreateWebHostBuilder(appHost, serviceCollection, options, startupConfig, appPaths).Build();