Quellcode durchsuchen

Fix typo in ActivityHandler pipeline

Daniel Supernault vor 2 Jahren
Ursprung
Commit
99a674bab6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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;
     }
 }