From e48fbeda0ab6435fa1d7edc97add3f083c6b2eca Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Jun 2019 04:34:01 +0000 Subject: [PATCH] restore updating of the public contact --- src/Worker/OnePoll.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index dccf248c6b..3c14100ab2 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -226,6 +226,7 @@ class OnePoll private static function updateContact(array $contact, array $fields) { DBA::update('contact', $fields, ['id' => $contact['id']]); + DBA::update('contact', $fields, ['uid' => 0, 'nurl' => $contact['nurl']]); } /**