aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-10-03 09:18:00 +0100
committerGitHub <noreply@github.com>2020-10-03 09:18:00 +0100
commit2929ce6e0dd8f3308bd1249e8b5eb1cf8edba008 (patch)
tree1fa6ef5659a22f94afcf249f793ef4ee2b0fe1f1 /Emby.Server.Implementations/ApplicationHost.cs
parent298a322ac1b8aece032511c39c3e3397dd09a0c4 (diff)
Update ApplicationHost.cs
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 2bd364984..3419675c3 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1540,6 +1540,7 @@ namespace Emby.Server.Implementations
public IEnumerable<Assembly> GetApiPluginAssemblies()
{
var assemblies = _allConcreteTypes
+ .Select(LoadPlugin)
.Where(i => typeof(ControllerBase).IsAssignableFrom(i))
.Select(i => i.Assembly)
.Distinct();