Merge pull request #559 from edegaudenzi/feature/397_socialnetwork_already_taken_fix

#397 No more fatal Exceptions when connecting to already taken Social…
This commit is contained in:
Lorenzo Milesi
2024-08-14 21:21:57 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
- Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio) - Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio)
- New #553: created Da\User\AuthClient\Microsoft365 auth client (edegaudenzi) - New #553: created Da\User\AuthClient\Microsoft365 auth client (edegaudenzi)
- Ehh: Added SecurityHelper to the Bootstrap classMap - Ehh: Added SecurityHelper to the Bootstrap classMap
- Fix #397: No more fatal Exceptions when connecting to already taken Social Network (edegaudenzi)
## 1.6.3 Mar 18th, 2024 ## 1.6.3 Mar 18th, 2024

View File

@ -93,6 +93,6 @@ class SocialNetworkAccountConnectService implements ServiceInterface
} }
} }
return false; return $account;
} }
} }