aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-11-12 21:47:44 -0500
committerLuke <luke.pulverenti@gmail.com>2015-11-12 21:47:44 -0500
commit708a810b7669a5c2229a1f083a7d3284eb9c2a1f (patch)
tree1544cdb39289a489674ede721ef7aa63adb67911
parent1051745fd12fdf6f999b7b3f89a7494655294cb0 (diff)
parentcf68f08b9fb71da5b9ede7d7aacfb862dba30987 (diff)
Merge pull request #1266 from MediaBrowser/master
update image sizes
-rw-r--r--MediaBrowser.Model/System/SystemInfo.cs7
-rw-r--r--MediaBrowser.Server.Startup.Common/ApplicationHost.cs3
2 files changed, 1 insertions, 9 deletions
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
@@ -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 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
};
}