From 6e634d80008cd609b8f8f2fb9f7d50e556d8ef25 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 13 Jul 2016 18:42:57 -0400 Subject: [PATCH] Add text/plain media type for all json input formatters --- src/Api/Startup.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Api/Startup.cs b/src/Api/Startup.cs index 128b8deeae..85a0f5c652 100644 --- a/src/Api/Startup.cs +++ b/src/Api/Startup.cs @@ -148,9 +148,13 @@ namespace Bit.Api { config.Filters.Add(new ExceptionHandlerFilterAttribute()); config.Filters.Add(new ModelStateValidationFilterAttribute()); + // Allow JSON of content type "text/plain" to avoid cors preflight - config.InputFormatters.OfType().SingleOrDefault()? - .SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse("text/plain")); + var textPlainMediaType = MediaTypeHeaderValue.Parse("text/plain"); + foreach(var jsonFormatter in config.InputFormatters.OfType()) + { + jsonFormatter.SupportedMediaTypes.Add(textPlainMediaType); + } }); }