From 1afd720241ce2a63e6d399817297331765fec992 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Wed, 10 Jul 2019 23:38:28 -0400 Subject: [PATCH] Changed 400 error code to 409 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 31dc6c8..3dcbf26 100644 --- a/index.js +++ b/index.js @@ -93,7 +93,7 @@ app.get('/api/postVideoSponsorTimes', function (req, res) { res.sendStatus(200); } else { - res.sendStatus(400); + res.sendStatus(409); } }) });