aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-11-20 19:18:18 +0000
committerGreenback <jimcartlidge@yahoo.co.uk>2020-11-20 19:18:18 +0000
commiteed1a40b1935e00e04f6b27c7d307bf110b83b31 (patch)
treea5a6530e542bdec527a91c071c82021275bfe71b
parent972ed3ccfe3b669ca3e3d53aa68b12ddabc9a613 (diff)
Fixed tests
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index d0dcdab75..cf7751c36 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)