From: Michael Date: Thu, 12 Mar 2020 17:31:28 +0000 (+0000) Subject: Avoid warning in gcontact.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e1786b67473d91d74031f9235b4e7f89cbdbd804;p=friendica.git Avoid warning in gcontact.php --- diff --git a/src/Model/GContact.php b/src/Model/GContact.php index 59c84bc490..5bcac5a013 100644 --- a/src/Model/GContact.php +++ b/src/Model/GContact.php @@ -1343,14 +1343,18 @@ class GContact foreach ($contacts as $contact) { $gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(($contact))]); if (DBA::isResult($gcontact)) { + $field = []; if (in_array($contact, $followers)) { $fields = ['gcid' => $gcid, 'follower-gcid' => $gcontact['id']]; } elseif (in_array($contact, $followings)) { $fields = ['gcid' => $gcontact['id'], 'follower-gcid' => $gcid]; } - Logger::info('Set relation between contacts', $fields); - DBA::update('gfollower', ['deleted' => false], $fields, true); - continue; + + if (!empty($fields)) { + Logger::info('Set relation between contacts', $fields); + DBA::update('gfollower', ['deleted' => false], $fields, true); + continue; + } } if (!Network::isUrlBlocked($contact)) {