aboutsummaryrefslogtreecommitdiff
path: root/profile/public/script.js
diff options
context:
space:
mode:
authorLarsVomMars2021-01-29 11:31:24 +0100
committerLarsVomMars2021-01-29 11:31:24 +0100
commit5eb14d6d09638c9ba3f034a019a8cd54c512b238 (patch)
tree5031371019c62054aabccc79ccc24561d85c9998 /profile/public/script.js
parentdcf2ba4afc2eec720d6ae6df4be1b290cc91563c (diff)
Some fixes
Diffstat (limited to 'profile/public/script.js')
-rw-r--r--profile/public/script.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/profile/public/script.js b/profile/public/script.js
index eb5ff14..91b723e 100644
--- a/profile/public/script.js
+++ b/profile/public/script.js
@@ -92,18 +92,17 @@ form.addEventListener("submit", async (evt) => {
}
const body = JSON.stringify(rawBody);
- const resp = await fetch("api/answer", { method, body });
+ const resp = await fetch("api/answer", { method, body, headers: { "Content-Type": "application/json" } });
const res = await resp.json();
if (!res.success) alert("AHHHH");
else init = false;
- // else location.reload(); // BUT WHY?
});
saveBtn.addEventListener("click", (e) => {
cropper.getCroppedCanvas()
.toBlob(async (blob) => {
const url = "api/answerImage";
- const method = imageInit ? "POST" : "PUT"; // Separate image init
+ const method = imageInit ? "POST" : "PUT";
const body = new FormData();
if (imageID === -1) {
return;