Explorar el Código

Fix typo in ActivityHandler pipeline

Daniel Supernault hace 2 años
padre
commit
99a674bab6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
     }
 }