diff options
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 3 |
2 files changed, 1 insertions, 9 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index ffc65cb66..6b54a90d4 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -87,12 +87,6 @@ namespace MediaBrowser.Model.System public List<string> FailedPluginAssemblies { get; set; } /// <summary> - /// Gets or sets the image enhancers. - /// </summary> - /// <value>The image enhancers.</value> - public List<string> ImageEnhancers { get; set; } - - /// <summary> /// Gets or sets the program data path. /// </summary> /// <value>The program data path.</value> @@ -168,7 +162,6 @@ namespace MediaBrowser.Model.System CompletedInstallations = new List<InstallationInfo>(); FailedPluginAssemblies = new List<string>(); - ImageEnhancers = new List<string>(); } } } diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index 931af669f..97a457a1b 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -1084,8 +1084,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 }; } |
