From 33c0db3a9adb3e1ae19877f5d8dc22dcbee8e699 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 22 May 2020 17:03:33 -0600 Subject: [PATCH] Update FederationController, fix typo --- app/Http/Controllers/FederationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/FederationController.php b/app/Http/Controllers/FederationController.php index e6f06fbc6..09116f1f4 100644 --- a/app/Http/Controllers/FederationController.php +++ b/app/Http/Controllers/FederationController.php @@ -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; }