Filter blocked contacts out from Protocol\ActivityPub\Transmitter::getContacts

This commit is contained in:
Hypolite Petovan 2020-11-11 09:18:51 -05:00
parent 6b8c8b03c6
commit 0de8319c15
1 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,8 @@ class Transmitter
'deleted' => false,
'hidden' => false,
'archive' => false,
'pending' => false
'pending' => false,
'blocked' => false,
];
$condition = DBA::buildCondition($parameters);