Merge branch 'develop'

This commit is contained in:
Simon Vieille 2022-03-06 22:09:21 +01:00
commit 4be92913a5
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
### Added ### Added
* add ability to rename file in the file manager * add ability to rename file in the file manager
### Fixed ### Fixed
* fix user factory
### Changed ### Changed
## [1.7.2] - 2022-03-03 ## [1.7.2] - 2022-03-03

View file

@ -29,7 +29,7 @@ class UserFactory implements FactoryInterface
$entity->setEmail($email); $entity->setEmail($email);
} }
if (null !== $email) { if (null !== $password) {
$entity->setPassword($this->encoder->encodePassword($entity, $password)); $entity->setPassword($this->encoder->encodePassword($entity, $password));
} }