Reformatted array

This commit is contained in:
Roland Häder 2022-06-24 03:24:51 +02:00
parent f12cc9648e
commit b0693c1ad7
Signed by: roland
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 7 additions and 1 deletions

View File

@ -916,7 +916,13 @@ class Transmitter
$networks = [Protocol::ACTIVITYPUB, Protocol::OSTATUS];
}
$condition = ['uid' => $uid, 'archive' => false, 'pending' => false, 'blocked' => false, 'network' => Protocol::FEDERATED];
$condition = [
'uid' => $uid,
'archive' => false,
'pending' => false,
'blocked' => false,
'network' => Protocol::FEDERATED,
];
if (!empty($uid)) {
$condition['rel'] = [Contact::FOLLOWER, Contact::FRIEND];