1
0
şunun yansıması https://github.com/nextcloud/server.git eşitlendi 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>
Bu işleme şunda yer alıyor:
Joas Schilling 2017-05-26 12:49:12 +02:00
ebeveyn c1925ddfd0
işleme 7ef6f065ca
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: E166FD8976B3BAC8

Dosyayı Görüntüle

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