mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-03 18:33:34 +02:00
starting dashboard paging
This commit is contained in:
parent
57f082051d
commit
a55ffea7a1
1 changed files with 5 additions and 0 deletions
|
|
@ -240,6 +240,11 @@ namespace MediaBrowser.Common.Implementations
|
|||
|
||||
var assemblies = GetComposablePartAssemblies().ToArray();
|
||||
|
||||
foreach (var assembly in assemblies)
|
||||
{
|
||||
Logger.Info("Loading {0}", assembly.FullName);
|
||||
}
|
||||
|
||||
AllTypes = assemblies.SelectMany(GetTypes).ToArray();
|
||||
|
||||
AllConcreteTypes = AllTypes.Where(t => t.IsClass && !t.IsAbstract && !t.IsInterface && !t.IsGenericType).ToArray();
|
||||
|
|
|
|||
Loading…
Reference in a new issue