mirror of https://github.com/pixelfed/pixelfed.git
Update Inbox, add user domain blocks to Announce handler
This commit is contained in:
parent
c89dc45e8d
commit
279fb28e2a
|
@ -589,6 +589,10 @@ class Inbox
|
|||
return;
|
||||
}
|
||||
|
||||
if(AccountService::blocksDomain($parent->profile_id, $actor->domain) == true) {
|
||||
return;
|
||||
}
|
||||
|
||||
$blocks = UserFilterService::blocks($parent->profile_id);
|
||||
if($blocks && in_array($actor->id, $blocks)) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue