From b1eae0c9aa5bc10df7a809182ac7b264bdcef411 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 29 Jan 2023 00:07:05 -0500 Subject: [PATCH] Remove Feed contacts from profile contact list - These contact don't have a public pendant and therefore shouldn't be shown to visitors - Address https://github.com/friendica/friendica/issues/12486#issuecomment-1406191980 --- src/Module/Profile/Contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Profile/Contacts.php b/src/Module/Profile/Contacts.php index bf5d2f242..dde138d8c 100644 --- a/src/Module/Profile/Contacts.php +++ b/src/Module/Profile/Contacts.php @@ -92,7 +92,7 @@ class Contacts extends Module\BaseProfile 'archive' => false, 'failed' => false, 'self' => false, - 'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED] + 'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS] ]; switch ($type) {