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, {
method: "POST",
headers: {
"Content-Type": "application/json",
"credentials": "include"
"Content-Type": "application/json"
},
credentials: "include",
body: JSON.stringify({ uuid }) // send uuid in request body
});