diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 20:53:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 20:53:18 -0400 |
| commit | b7a8b92c0011c5411a691d522a414480c4c5e34c (patch) | |
| tree | 3a84dbd4d5cd1c78561a92c2a9283ac9cf687b52 /MediaBrowser.ServerApplication | |
| parent | 04468452ea873e83811522180a0423ac72d6f77d (diff) | |
reduce system info refreshing from dashboard
Diffstat (limited to 'MediaBrowser.ServerApplication')
| -rw-r--r-- | MediaBrowser.ServerApplication/ApplicationHost.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs index 8f738c5dcd..126bea9e5a 100644 --- a/MediaBrowser.ServerApplication/ApplicationHost.cs +++ b/MediaBrowser.ServerApplication/ApplicationHost.cs @@ -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(), |
