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