1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-19 17:21:35 +02:00

Fix the fix

this should actually be what's intended
This commit is contained in:
MathMan05 2024-08-25 23:13:14 -05:00 committed by GitHub
parent 582853542a
commit 58603eefe4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,7 @@ router.patch(
}
if (body.new_password) {
if (!body.password || !user.email) {
if (!body.password && user.email) {
throw FieldErrors({
password: {
code: "BASE_TYPE_REQUIRED",