Changed 400 error code to 409

This commit is contained in:
Ajay Ramachandran
2019-07-10 23:38:28 -04:00
parent da9fc1f4a1
commit 1afd720241

View File

@@ -93,7 +93,7 @@ app.get('/api/postVideoSponsorTimes', function (req, res) {
res.sendStatus(200);
} else {
res.sendStatus(400);
res.sendStatus(409);
}
})
});