Переглянути джерело

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