mirror of https://github.com/pixelfed/pixelfed.git
Update Inbox, add user domain blocks to Direct Message handler
This commit is contained in:
parent
e7c08fbbb2
commit
a7f96d8194
|
@ -372,7 +372,11 @@ class Inbox
|
|||
->whereUsername(array_last(explode('/', $activity['to'][0])))
|
||||
->firstOrFail();
|
||||
|
||||
if(in_array($actor->id, $profile->blockedIds()->toArray())) {
|
||||
if(!$actor || in_array($actor->id, $profile->blockedIds()->toArray())) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(AccountService::blocksDomain($profile->id, $actor->domain) == true) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue