]> git.mxchange.org Git - friendica.git/commitdiff
Changes:
authorRoland Häder <roland@mxchange.org>
Wed, 20 Jul 2022 09:47:43 +0000 (11:47 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 20 Jul 2022 09:54:28 +0000 (11:54 +0200)
- ops, fixed variable name (thanks to @annando)
- also used empty() for an empty array (and false/null)

src/Protocol/Diaspora.php

index b09c94a087742b9588a8438808db8ca7e1f4afb4..71eee8f316777606eae045e28d8e1f43d38dae6c 100644 (file)
@@ -4020,12 +4020,12 @@ class Diaspora
                        return;
                }
 
-               if (!$recipients) {
+               if (empty($recipients)) {
                        Logger::debug('No recipients provided, fetching for user', ['uid' => $uid]);
                        $recipients = DBA::selectToArray('contact', [], ['network' => Protocol::DIASPORA, 'uid' => $uid, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]);
                }
 
-               if (!$recipients) {
+               if (empty($recipients)) {
                        Logger::warning('Cannot fetch recipients', ['uid' => $uid]);
                        return;
                }
@@ -4033,7 +4033,7 @@ class Diaspora
                $message = self::createProfileData($uid);
 
                // @todo Split this into single worker jobs
-               foreach ($recipientients as $recipient) {
+               foreach ($recipients as $recipient) {
                        Logger::info('Send updated profile data for user ' . $uid . ' to contact ' . $recipient['id']);
                        self::buildAndTransmit($owner, $recipient, 'profile', $message);
                }