diff --git a/93_nei_core/Getf_Service_Transfer_Client_Service_HttpHandler/HttpWebService.cs b/93_nei_core/Getf_Service_Transfer_Client_Service_HttpHandler/HttpWebService.cs index 4e12481..b40f615 100644 --- a/93_nei_core/Getf_Service_Transfer_Client_Service_HttpHandler/HttpWebService.cs +++ b/93_nei_core/Getf_Service_Transfer_Client_Service_HttpHandler/HttpWebService.cs @@ -323,7 +323,7 @@ namespace Getf_Service_Transfer_Client_Service_HttpHandler if (contentType == null) return true; contentType = contentType.ToLower(); //"text/", - var list = new string[] { "application/json", "application/xml" }; + var list = new string[] { "text/html", "application/json", "application/xml" }; return list.Any(m => contentType.Contains(m)); } }