From 7792a9a9aff84ed57569fd527839c3647725bb72 Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Sat, 15 Dec 2018 16:30:38 +0100 Subject: [PATCH] Fix resource load crash --- .../ApplicationHost.cs | 1 + .../Emby.Server.Implementations.csproj | 112 +----------------- .../Session/SessionManager.cs | 2 +- 3 files changed, 7 insertions(+), 108 deletions(-) diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index db716894ee..011f3a0fba 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -2531,6 +2531,7 @@ namespace Emby.Server.Implementations return null; } + // TODO: @bond Remove? private Dictionary LoadValues() { Dictionary values = new Dictionary(StringComparer.OrdinalIgnoreCase); diff --git a/Emby.Server.Implementations/Emby.Server.Implementations.csproj b/Emby.Server.Implementations/Emby.Server.Implementations.csproj index 97909fd18f..bf459defb2 100644 --- a/Emby.Server.Implementations/Emby.Server.Implementations.csproj +++ b/Emby.Server.Implementations/Emby.Server.Implementations.csproj @@ -41,113 +41,11 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - + diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 9db4f4423a..df7f231c7b 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -1901,4 +1901,4 @@ namespace Emby.Server.Implementations.Session return user != null && user.Policy.IsAdministrator; } } -} \ No newline at end of file +}