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

Merge pull request #2200 from pixelfed/staging

Update FederationController, fix typo
This commit is contained in:
daniel 2020-05-22 17:04:05 -06:00 committed by GitHub
commit f2ae45e5a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ class FederationController extends Controller
$headers = $request->headers->all();
$payload = $request->getContent();
InboxValidator::dispatchNow($username, $headers, $payload)->onQueue('high');
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
return;
}