浏览代码

Fix typo in ActivityHandler pipeline

Daniel Supernault 2 年之前
父节点
当前提交
99a674bab6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Jobs/InboxPipeline/ActivityHandler.php

+ 1 - 1
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;
     }
 }