diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-11-27 11:50:06 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-27 11:50:06 +0300 |
| commit | 5263aaa026ed9789e77ba2dee4b9e15077dcea7a (patch) | |
| tree | 8f82e91993c393ba2eda2815f19389eccfcc75b0 /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | |
| parent | c45d54efb2352a504a66fe5f5b2df01a55cde8f6 (diff) | |
| parent | 080b1069914cdca8a4e342ce9fa0a58578248420 (diff) | |
Merge pull request #1503 from cvium/webapi_v2
Move StartupWizard to ASP.NET Web Api
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs index dc1a56e27..6dd016f8a 100644 --- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -18,7 +18,6 @@ using MediaBrowser.Model.Events; using MediaBrowser.Model.Serialization; using MediaBrowser.Model.Services; using Microsoft.AspNetCore.Http; -using Microsoft.AspNetCore.Http.Internal; using Microsoft.AspNetCore.WebUtilities; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; @@ -164,7 +163,7 @@ namespace Emby.Server.Implementations.HttpServer { OnReceive = ProcessWebSocketMessageReceived, Url = e.Url, - QueryString = e.QueryString ?? new QueryCollection() + QueryString = e.QueryString }; connection.Closed += OnConnectionClosed; |
