Fix typos

This commit is contained in:
Daniel Supernault 2024-09-09 00:52:14 -06:00
parent 4e946dec91
commit 286779247e
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -99,8 +99,8 @@ class ProcessMovePipeline implements ShouldQueue
return false;
}
$res = Helpers::profileFetch($this->target);
if (! $res) {
$targetRes = Helpers::profileFetch($this->target);
if (! $targetRes) {
Log::info('[AP][INBOX][MOVE] target fetch failure');
return false;
@ -136,8 +136,8 @@ class ProcessMovePipeline implements ShouldQueue
return false;
}
$res = Helpers::profileFetch($this->activity);
if (! $res) {
$actorRes = Helpers::profileFetch($this->activity);
if (! $actorRes) {
Log::info('[AP][INBOX][MOVE] actor fetch failure');
return false;