소스 검색

Added custom format feature to allow image uploads

Luke Pulverenti 12 년 전
부모
커밋
e1e35cd4e7
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs

+ 2 - 1
MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs

@@ -161,7 +161,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
                 LogFactory = LogManager.LogFactory,
                 LogFactory = LogManager.LogFactory,
 
 
                 // The Markdown feature causes slow startup times (5 mins+) on cold boots for some users
                 // 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;
             container.Adapter = _containerAdapter;