mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
reduce system info refreshing from dashboard
This commit is contained in:
@@ -460,11 +460,11 @@ namespace MediaBrowser.ServerApplication
|
||||
GetExports<ILibraryPostScanTask>(),
|
||||
GetExports<IMetadataSaver>());
|
||||
|
||||
ProviderManager.AddParts(GetExports<BaseMetadataProvider>().ToArray());
|
||||
ProviderManager.AddParts(GetExports<BaseMetadataProvider>());
|
||||
|
||||
IsoManager.AddParts(GetExports<IIsoMounter>().ToArray());
|
||||
IsoManager.AddParts(GetExports<IIsoMounter>());
|
||||
|
||||
ImageProcessor.AddParts(GetExports<IImageEnhancer>().ToArray());
|
||||
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -607,9 +607,9 @@ namespace MediaBrowser.ServerApplication
|
||||
IsNetworkDeployed = CanSelfUpdate,
|
||||
WebSocketPortNumber = ServerManager.WebSocketPortNumber,
|
||||
SupportsNativeWebSocket = ServerManager.SupportsNativeWebSocket,
|
||||
FailedPluginAssemblies = FailedAssemblies.ToArray(),
|
||||
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToArray(),
|
||||
CompletedInstallations = InstallationManager.CompletedInstallations.ToArray(),
|
||||
FailedPluginAssemblies = FailedAssemblies.ToList(),
|
||||
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),
|
||||
CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),
|
||||
Id = _systemId,
|
||||
ProgramDataPath = ApplicationPaths.ProgramDataPath,
|
||||
MacAddress = GetMacAddress(),
|
||||
|
||||
Reference in New Issue
Block a user