1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Fix typo in ActivityHandler pipeline

This commit is contained in:
Daniel Supernault 2022-12-13 00:31:10 -07:00
parent eea1fe0c58
commit 99a674bab6
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

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