Преглед на файлове

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