From eed1a40b1935e00e04f6b27c7d307bf110b83b31 Mon Sep 17 00:00:00 2001 From: Greenback Date: Fri, 20 Nov 2020 19:18:18 +0000 Subject: [PATCH] Fixed tests --- Emby.Server.Implementations/ApplicationHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index d0dcdab757..cf7751c369 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -774,7 +774,7 @@ namespace Emby.Server.Implementations foreach (var plugin in Plugins) { - if (plugin is IPluginAssembly assemblyPlugin) + if (_pluginsManifests != null && plugin is IPluginAssembly assemblyPlugin) { // Ensure the version number matches the Plugin Manifest information. foreach (var item in _pluginsManifests)