diff options
| author | Greenback <jimcartlidge@yahoo.co.uk> | 2020-11-20 19:18:18 +0000 |
|---|---|---|
| committer | Greenback <jimcartlidge@yahoo.co.uk> | 2020-11-20 19:18:18 +0000 |
| commit | eed1a40b1935e00e04f6b27c7d307bf110b83b31 (patch) | |
| tree | a5a6530e542bdec527a91c071c82021275bfe71b | |
| parent | 972ed3ccfe3b669ca3e3d53aa68b12ddabc9a613 (diff) | |
Fixed tests
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
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) |
