diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-11-12 14:54:15 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-11-12 14:54:15 -0500 |
| commit | 0f9580d339a715b92fd2db2af8232e2404010357 (patch) | |
| tree | f2d5d5ba92ba575a3d93cbae58a4f105a09f86cb | |
| parent | 8a82d324dd6a8099f56f56b86e5dbc03ea090149 (diff) | |
| parent | bbd672bf95205ed441c1c0839bb2b0a751cc3d1b (diff) | |
Merge pull request #1263 from MediaBrowser/master
update image sizing
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index d6dcb3435..5b9c1f250 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -1092,7 +1092,8 @@ namespace MediaBrowser.Server.Startup.Common SupportsRunningAsService = SupportsRunningAsService, ServerName = FriendlyName, LocalAddress = LocalApiUrl, - SupportsLibraryMonitor = SupportsLibraryMonitor + SupportsLibraryMonitor = SupportsLibraryMonitor, + ImageEnhancers = ImageProcessor.ImageEnhancers.Select(i => i.GetType().Name).ToList() }; } |
