aboutsummaryrefslogtreecommitdiff
path: root/mottovote/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'mottovote/index.js')
-rw-r--r--mottovote/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/mottovote/index.js b/mottovote/index.js
index eb553e8..c3dbb9b 100644
--- a/mottovote/index.js
+++ b/mottovote/index.js
@@ -30,7 +30,7 @@ app.put("/api/vote", checkUser, async (req, res) => {
res.send("ok");
} catch (e) {
console.error(e);
- res.send("error");
+ return res.send("error");
}
});