Merge pull request #7503 from MrPetovan/bug/fix-private-permissions

Use contact.network field instead of contact.protocol in Group::expand
This commit is contained in:
Philipp 2019-08-11 23:26:34 +02:00 committed by GitHub
commit 541cdcd515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@ class Group extends BaseObject
$followers = Contact::selectToArray(['id'], [
'uid' => $uid,
'rel' => [Contact::FOLLOWER, Contact::FRIEND],
'protocol' => Protocol::SUPPORT_PRIVATE,
'network' => Protocol::SUPPORT_PRIVATE,
]);
foreach ($followers as $follower) {
@ -349,7 +349,7 @@ class Group extends BaseObject
$mutuals = Contact::selectToArray(['id'], [
'uid' => $uid,
'rel' => [Contact::FRIEND],
'protocol' => Protocol::SUPPORT_PRIVATE,
'network' => Protocol::SUPPORT_PRIVATE,
]);
foreach ($mutuals as $mutual) {