From 13bfd6e7fda40d0fa2e8f91892c594eee39ecb64 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 1 Jun 2021 07:40:15 +1000 Subject: [PATCH] Fixes for setup screeen --- app/Http/Controllers/SetupController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php index 7d1e9d00b9e1..48f7285ece95 100644 --- a/app/Http/Controllers/SetupController.php +++ b/app/Http/Controllers/SetupController.php @@ -163,7 +163,7 @@ class SetupController extends Controller /* Create the first account. */ if (Account::count() == 0) { - CreateAccount::dispatchNow($request->all()); + CreateAccount::dispatchNow($request->all(), $request->getClientIp()); } VersionCheck::dispatchNow();