From e5a757786f632ef15aae7f4010e120d5479b869b Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Sat, 3 Oct 2020 12:19:18 +0200 Subject: Fixes --- mottovote/public/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mottovote/public') diff --git a/mottovote/public/script.js b/mottovote/public/script.js index c8432c5..05ca940 100644 --- a/mottovote/public/script.js +++ b/mottovote/public/script.js @@ -46,7 +46,8 @@ function addListeners() { headers: { "Content-Type": "application/json" }, body: JSON.stringify(req), }); - console.log(await resp.text()); - + const res = await resp.text(); + if (res === "ok") location.reload(); + else alert(res); }); } \ No newline at end of file -- cgit v1.2.3