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(); $headers = $request->headers->all();
$payload = $request->getContent(); $payload = $request->getContent();
InboxValidator::dispatchNow($username, $headers, $payload)->onQueue('high'); dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
return; return;
} }