From: Michael Date: Mon, 4 Mar 2024 07:30:04 +0000 (+0000) Subject: Issue 13765: Fixed creation of self user contact for approval X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=52cc8ab73b867b2d920a2ab40a237f9fa166b13f;p=friendica.git Issue 13765: Fixed creation of self user contact for approval --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index e673822ef2..bc235a3e35 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -755,7 +755,7 @@ class Contact $user = DBA::selectFirst( 'user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'], - ['uid' => $uid, 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false] + ['uid' => $uid, 'account_removed' => false, 'account_expired' => false] ); if (!DBA::isResult($user)) { return false;