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