forked from mirror/pixelfed
Fix typos
This commit is contained in:
parent
4e946dec91
commit
286779247e
1 changed files with 4 additions and 4 deletions
|
@ -99,8 +99,8 @@ class ProcessMovePipeline implements ShouldQueue
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$res = Helpers::profileFetch($this->target);
|
$targetRes = Helpers::profileFetch($this->target);
|
||||||
if (! $res) {
|
if (! $targetRes) {
|
||||||
Log::info('[AP][INBOX][MOVE] target fetch failure');
|
Log::info('[AP][INBOX][MOVE] target fetch failure');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -136,8 +136,8 @@ class ProcessMovePipeline implements ShouldQueue
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$res = Helpers::profileFetch($this->activity);
|
$actorRes = Helpers::profileFetch($this->activity);
|
||||||
if (! $res) {
|
if (! $actorRes) {
|
||||||
Log::info('[AP][INBOX][MOVE] actor fetch failure');
|
Log::info('[AP][INBOX][MOVE] actor fetch failure');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue