mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
Update InboxValidator job
This commit is contained in:
parent
10f897b59f
commit
21f211d354
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ class InboxValidator implements ShouldQueue
|
||||||
}
|
}
|
||||||
$actor = Profile::whereKeyId($keyId)->first();
|
$actor = Profile::whereKeyId($keyId)->first();
|
||||||
if(!$actor) {
|
if(!$actor) {
|
||||||
$actor = Helpers::profileFirstOrNew($bodyDecoded['actor']);
|
$actorUrl = is_array($bodyDecoded['actor']) ? $bodyDecoded['actor'][0] : $bodyDecoded['actor'];
|
||||||
|
$actor = Helpers::profileFirstOrNew($actorUrl);
|
||||||
}
|
}
|
||||||
if(!$actor) {
|
if(!$actor) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue