From: Michael Date: Thu, 3 May 2018 17:43:10 +0000 (+0000) Subject: Urgent bugfix: Public contacts had been blocked automatically when created X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bce3b6f8965966f419f0eb6902d1b3fb62e43ab5;p=friendica.git Urgent bugfix: Public contacts had been blocked automatically when created --- diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 6e7e21d1e9..569e57381e 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -447,6 +447,7 @@ class Probe // When the contact doesn't exist, the value "true" will trigger an insert if (!$old_fields) { $old_fields = true; + $fields['blocked'] = false; } dba::update('contact', $fields, $condition, $old_fields);