Update ApplicationHost.cs

This commit is contained in:
BaronGreenback 2020-10-03 09:18:00 +01:00 committed by GitHub
parent 298a322ac1
commit 2929ce6e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();