aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-14 08:18:59 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-14 08:18:59 -0400
commite1e35cd4e70996298dd0c407e5815eccfc7d7fd3 (patch)
tree330f9907e806ac52d7b06e52a30b6dbf03b6d517 /MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
parentd5e06c67ffad6c8ecd413f7bf4d7c7e8be42bee6 (diff)
Added custom format feature to allow image uploads
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
index 3c718103f..aa30cee26 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
@@ -161,7 +161,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
LogFactory = LogManager.LogFactory,
// The Markdown feature causes slow startup times (5 mins+) on cold boots for some users
- EnableFeatures = Feature.Csv | Feature.Html | Feature.Json | Feature.Jsv | Feature.Metadata | Feature.Xml
+ // Custom format allows images
+ EnableFeatures = Feature.Csv | Feature.Html | Feature.Json | Feature.Jsv | Feature.Metadata | Feature.Xml | Feature.CustomFormat
});
container.Adapter = _containerAdapter;