From: Michael Date: Wed, 2 Sep 2020 03:13:10 +0000 (+0000) Subject: Changed field origin X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a2e4a0170b05485e6c0694d151e38d913f37675a;p=friendica.git Changed field origin --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 1b2aa38616..74ac1f68a5 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -2122,9 +2122,8 @@ class Contact $pending = false; if ($protocol == Protocol::ACTIVITYPUB) { - $apcontact = APContact::getByURL($ret['url'], false); - if (isset($apcontact['manually-approve'])) { - $pending = (bool)$apcontact['manually-approve']; + if (isset($ret['manually-approve'])) { + $pending = (bool)$ret['manually-approve']; } }