mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
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;
|
||||
}
|
||||
|
||||
$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;
|
||||
|
|
Loading…
Reference in a new issue