From e1e35cd4e70996298dd0c407e5815eccfc7d7fd3 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 14 Jun 2013 08:18:59 -0400 Subject: [PATCH] Added custom format feature to allow image uploads --- MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs index 3c718103ff..aa30cee26f 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;