Merge pull request #11758 from Quix0r/fixes/wrong-variable-name

Fixed variable name + used empty()
This commit is contained in:
Hypolite Petovan 2022-07-20 07:55:38 -04:00 committed by GitHub
commit 650e05bcb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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);
}