update comments

This commit is contained in:
Alex Holliday
2024-12-17 10:02:56 -08:00
parent df11a457f1
commit a42e280e49

View File

@@ -281,7 +281,8 @@ const editUser = async (req, res, next) => {
const user = await req.db.getUserByEmail(email);
// Compare passwords
const match = await user.comparePassword(req.body.password);
// If not a match, throw a 401
// If not a match, throw a 403
// 403 instead of 401 to avoid triggering axios interceptor
if (!match) {
const error = new Error(errorMessages.AUTH_INCORRECT_PASSWORD);
error.status = 403;