sforkowany z mirror/friendica
Use network field instead of protocol in Group::expand
- contact.protocol field isn't systematically populated2022.09-rc
rodzic
828a81d325
commit
5feeffbe79
|
@ -334,7 +334,7 @@ class Group extends BaseObject
|
||||||
$followers = Contact::selectToArray(['id'], [
|
$followers = Contact::selectToArray(['id'], [
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'rel' => [Contact::FOLLOWER, Contact::FRIEND],
|
'rel' => [Contact::FOLLOWER, Contact::FRIEND],
|
||||||
'protocol' => Protocol::SUPPORT_PRIVATE,
|
'network' => Protocol::SUPPORT_PRIVATE,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
foreach ($followers as $follower) {
|
foreach ($followers as $follower) {
|
||||||
|
@ -349,7 +349,7 @@ class Group extends BaseObject
|
||||||
$mutuals = Contact::selectToArray(['id'], [
|
$mutuals = Contact::selectToArray(['id'], [
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'rel' => [Contact::FRIEND],
|
'rel' => [Contact::FRIEND],
|
||||||
'protocol' => Protocol::SUPPORT_PRIVATE,
|
'network' => Protocol::SUPPORT_PRIVATE,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
foreach ($mutuals as $mutual) {
|
foreach ($mutuals as $mutual) {
|
||||||
|
|
Ładowanie…
Reference in New Issue