diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 21:44:50 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 21:44:50 -0500 |
| commit | cf68f08b9fb71da5b9ede7d7aacfb862dba30987 (patch) | |
| tree | d307b3b2d11172de3c7a7eb69fa4aabce842bbcb | |
| parent | c6ce8342163a5665f29122aef02ce8068b349f16 (diff) | |
update image sizes
| -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 }; } |
