aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server
diff options
context:
space:
mode:
authorBond_009 <Bond.009@outlook.com>2019-12-17 23:15:02 +0100
committerBond_009 <bond.009@outlook.com>2020-01-13 20:06:08 +0100
commit976459d3e8a8b889cebc2cf281e38b0fbc19c9b9 (patch)
treea9604c194d3285b8e7b336a08939cefe713a16ce /Jellyfin.Server
parentce7744806c62d54d88acd3e538091f7beaa5601f (diff)
Rewrite WebSocket handling code
Diffstat (limited to 'Jellyfin.Server')
-rw-r--r--Jellyfin.Server/Startup.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Jellyfin.Server/Startup.cs b/Jellyfin.Server/Startup.cs
index 3ee5fb8b5..45f2b9d7c 100644
--- a/Jellyfin.Server/Startup.cs
+++ b/Jellyfin.Server/Startup.cs
@@ -3,7 +3,6 @@ using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
@@ -64,7 +63,6 @@ namespace Jellyfin.Server
app.UseResponseCompression();
// TODO app.UseMiddleware<WebSocketMiddleware>();
- app.Use(serverApplicationHost.ExecuteWebsocketHandlerAsync);
// TODO use when old API is removed: app.UseAuthentication();
app.UseJellyfinApiSwagger();