Update AP Inbox, fixes #3332

pull/3364/head
Daniel Supernault 3 years ago
parent afd849604e
commit f8931dc7cd
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -623,7 +623,10 @@ class Inbox
break;
case 'Tombstone':
$profile = Helpers::profileFetch($actor);
$profile = Profile::whereRemoteUrl($actor)->first();
if(!$profile || $profile->private_key != null) {
return;
}
$status = Status::whereProfileId($profile->id)
->whereUri($id)
->orWhere('url', $id)

Loading…
Cancel
Save