Don't trigger activity when the email didn't change
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
99117349df
commit
ea9613efa0
|
@ -117,6 +117,12 @@ class Hooks {
|
|||
* @throws \BadMethodCallException
|
||||
*/
|
||||
public function onChangeEmail(IUser $user, $oldMailAddress) {
|
||||
|
||||
if ($oldMailAddress === $user->getEMailAddress()) {
|
||||
// Email didn't really change, so don't create activities and emails
|
||||
return;
|
||||
}
|
||||
|
||||
$event = $this->activityManager->generateEvent();
|
||||
$event->setApp('settings')
|
||||
->setType('personal_settings')
|
||||
|
|
Loading…
Reference in New Issue