From 0a8c2a3433f003fd0bd4cb2eed26e4c71d62968d Mon Sep 17 00:00:00 2001 From: mayurrat Date: Wed, 29 Jan 2025 19:04:39 +0530 Subject: [PATCH] passing charset in Accept header not allowed, so fixed the same. --- .../Drivers/WebServicesDriver/HttpWebClientUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ginger/GingerCoreNET/Drivers/WebServicesDriver/HttpWebClientUtils.cs b/Ginger/GingerCoreNET/Drivers/WebServicesDriver/HttpWebClientUtils.cs index e5df2fdd77..353c8c7fce 100644 --- a/Ginger/GingerCoreNET/Drivers/WebServicesDriver/HttpWebClientUtils.cs +++ b/Ginger/GingerCoreNET/Drivers/WebServicesDriver/HttpWebClientUtils.cs @@ -941,7 +941,7 @@ private static string GetResponseContentTypeText(ApplicationAPIUtils.eResponseCo return "multipart/form-data"; //update to correct value case ApplicationAPIUtils.eResponseContentType.TextPlain: - return "text/plain; charset=utf-8"; + return "text/plain;"; case ApplicationAPIUtils.eResponseContentType.XML: return "application/xml";