From 91d1bec393cc1883b1134d2e59b92764c355bffc Mon Sep 17 00:00:00 2001
From: DewanaGustavus <76590469+DewanaGustavus@users.noreply.github.com>
Date: Fri, 17 Nov 2023 09:47:55 +0700
Subject: [PATCH] fix: SOAP unquoted action issue

---
 src/handler/soap-caller/SoapCaller.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/handler/soap-caller/SoapCaller.ts b/src/handler/soap-caller/SoapCaller.ts
index 793b7fa..e40e75d 100644
--- a/src/handler/soap-caller/SoapCaller.ts
+++ b/src/handler/soap-caller/SoapCaller.ts
@@ -13,7 +13,7 @@ type Header = {
 export async function SoapApiCall(url : string, method : string, params? : Object) {
     const headers: Header = {
         'Content-Type': 'text/xml;charset=UTF-8',
-        SOAPAction: '#POST',
+        SOAPAction: '\"POST\"',
         'apiKey': REST_API_KEY
     };
 
-- 
GitLab