mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 04:32:35 +01:00
fix: check for password only if username
is present in body
This commit is contained in:
parent
b682f170b9
commit
f047f93b77
@ -160,15 +160,15 @@ router.patch(
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if (!body.password) {
|
||||
throw FieldErrors({
|
||||
password: {
|
||||
message: req.t("auth:login.INVALID_PASSWORD"),
|
||||
code: "INVALID_PASSWORD",
|
||||
},
|
||||
});
|
||||
if (!body.password) {
|
||||
throw FieldErrors({
|
||||
password: {
|
||||
message: req.t("auth:login.INVALID_PASSWORD"),
|
||||
code: "INVALID_PASSWORD",
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if (body.discriminator) {
|
||||
|
Loading…
Reference in New Issue
Block a user