From 99a674bab6682ec5c1002f4616701fdc5c6f7b45 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 13 Dec 2022 00:31:10 -0700 Subject: [PATCH] Fix typo in ActivityHandler pipeline --- app/Jobs/InboxPipeline/ActivityHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/InboxPipeline/ActivityHandler.php b/app/Jobs/InboxPipeline/ActivityHandler.php index 2c2efc890..cd5f5689a 100644 --- a/app/Jobs/InboxPipeline/ActivityHandler.php +++ b/app/Jobs/InboxPipeline/ActivityHandler.php @@ -41,7 +41,7 @@ class ActivityHandler implements ShouldQueue */ public function handle() { - (new Inbox($this->headers, $this->profile, $this->payload))->handle(); + (new Inbox($this->headers, $this->username, $this->payload))->handle(); return; } }