From 9a6d80986ab9a82443a77f6ef036b00ee467c32b Mon Sep 17 00:00:00 2001 From: Deon George Date: Sat, 24 May 2025 00:26:39 +1000 Subject: [PATCH] We should start resume the session with ApplicationSession before checking for Session keys in AllowAnonymous --- bootstrap/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/app.php b/bootstrap/app.php index 3939d696..2245f6a4 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -16,8 +16,8 @@ return Application::configure(basePath: dirname(__DIR__)) $middleware->appendToGroup( group: 'web', middleware: [ - AllowAnonymous::class, ApplicationSession::class, + AllowAnonymous::class, SwapinAuthUser::class, ViewVariables::class, CheckUpdate::class,