This commit is contained in:
jomo 2014-10-19 21:05:55 +02:00
parent dd9574c19b
commit 6baf03aa80

View File

@ -40,7 +40,7 @@ router.get('/:uuid/:size?', function(req, res) {
} }
} else { } else {
res.status(422) // "Unprocessable Entity", valid request, but semantically erroneous: https://tools.ietf.org/html/rfc4918#page-78 res.status(422) // "Unprocessable Entity", valid request, but semantically erroneous: https://tools.ietf.org/html/rfc4918#page-78
.send("422 Invlid UUID"); .send("422 Invalid UUID");
} }
}); });