Merge pull request #4034 from pixelfed/staging

Update ap inbox
This commit is contained in:
daniel 2022-12-29 04:06:53 -07:00 committed by GitHub
commit a97d2be7b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -307,10 +307,20 @@ class Inbox
{
$activity = $this->payload['object'];
$actor = $this->actorFirstOrCreate($this->payload['actor']);
if(!$actor) {
return;
}
$status = Helpers::statusFetch($activity['inReplyTo']);
if(!$status) {
return;
}
$poll = $status->poll;
if(!$status || !$poll) {
if(!$poll) {
return;
}
@ -486,9 +496,14 @@ class Inbox
{
$actor = $this->actorFirstOrCreate($this->payload['actor']);
$target = $this->actorFirstOrCreate($this->payload['object']);
if(!$actor || $actor->domain == null || $target->domain !== null) {
if(!$actor || !$target) {
return;
}
if($actor->domain == null || $target->domain !== null) {
return;
}
if(
Follower::whereProfileId($actor->id)
->whereFollowingId($target->id)