This commit is contained in:
Oliver
2025-09-29 17:11:30 -03:00
parent ca5d552a86
commit c01c03da86

View File

@@ -130,9 +130,9 @@ const webhookPost = webhookUrl + "/submit-data";
const res = await fetch(webhookUrl, { const res = await fetch(webhookUrl, {
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json"
"credentials": "include"
}, },
credentials: "include",
body: JSON.stringify({ uuid }) // send uuid in request body body: JSON.stringify({ uuid }) // send uuid in request body
}); });