Update Inbox handler

This commit is contained in:
Daniel Supernault 2020-04-29 15:35:48 -06:00
parent 3063eb249a
commit d0fefe242b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 2 deletions

View File

@ -311,6 +311,8 @@ class Inbox
$id = $this->payload['object']['id'];
switch ($type) {
case 'Person':
// todo: fix race condition
return;
$profile = Helpers::profileFetch($actor);
if(!$profile || $profile->private_key != null) {
return;
@ -327,8 +329,6 @@ class Inbox
break;
case 'Tombstone':
// todo: fix race condition
return;
$profile = Helpers::profileFetch($actor);
$status = Status::whereProfileId($profile->id)
->whereUri($id)