diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index ffc65cb664..6b54a90d44 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -86,12 +86,6 @@ namespace MediaBrowser.Model.System /// The failed assembly loads. public List FailedPluginAssemblies { get; set; } - /// - /// Gets or sets the image enhancers. - /// - /// The image enhancers. - public List ImageEnhancers { get; set; } - /// /// Gets or sets the program data path. /// @@ -168,7 +162,6 @@ namespace MediaBrowser.Model.System CompletedInstallations = new List(); FailedPluginAssemblies = new List(); - ImageEnhancers = new List(); } } } diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index 5b9c1f2508..d6dcb3435d 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -1092,8 +1092,7 @@ namespace MediaBrowser.Server.Startup.Common SupportsRunningAsService = SupportsRunningAsService, ServerName = FriendlyName, LocalAddress = LocalApiUrl, - SupportsLibraryMonitor = SupportsLibraryMonitor, - ImageEnhancers = ImageProcessor.ImageEnhancers.Select(i => i.GetType().Name).ToList() + SupportsLibraryMonitor = SupportsLibraryMonitor }; }