1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-08-26 05:54:48 +02:00

Don't trigger activity when the email didn't change

Signed-off-by: Joas Schilling <coding@schilljs.com>
Cette révision appartient à :
Joas Schilling 2017-05-26 12:49:12 +02:00
Parent c1925ddfd0
révision 7ef6f065ca
Signature inconnue de Gitea
ID de la clé GPG: E166FD8976B3BAC8

Voir le fichier

@ -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')