Fixed update user #85

This commit is contained in:
Sven Heidemann 2022-10-25 21:11:55 +02:00
parent 1c5b776efb
commit 1f2087f50f

View File

@ -349,7 +349,7 @@ class AuthService(AuthServiceABC):
raise ServiceException(ServiceErrorCode.InvalidUser, 'Wrong password') raise ServiceException(ServiceErrorCode.InvalidUser, 'Wrong password')
# update password # update password
if self._hash_sha256(update_user_dto.new_auth_user.password, user.password_salt) != user.password: if update_user_dto.new_auth_user.password is not None and self._hash_sha256(update_user_dto.new_auth_user.password, user.password_salt) != user.password:
user.password_salt = uuid.uuid4() user.password_salt = uuid.uuid4()
user.password = self._hash_sha256(update_user_dto.new_auth_user.password, user.password_salt) user.password = self._hash_sha256(update_user_dto.new_auth_user.password, user.password_salt)