Update FederationController, fix typo

This commit is contained in:
Daniel Supernault 2020-05-22 17:03:33 -06:00
parent 6476855519
commit 33c0db3a9a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

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