Fix: missing variable

This commit is contained in:
James Cole
2023-06-10 21:41:45 +02:00
parent 0f8f95de9a
commit 44df77f45a

View File

@@ -90,7 +90,7 @@ class ProfileController extends Controller
); );
$authGuard = config('firefly.authentication_guard'); $authGuard = config('firefly.authentication_guard');
$this->internalAuth = 'web' === $authGuard; $this->internalAuth = 'web' === $authGuard;
Log::debug(sprintf('ProfileController::__construct(). Login provider is "%s", authentication guard is "%s"', $loginProvider, $authGuard)); Log::debug(sprintf('ProfileController::__construct(). Authentication guard is "%s"', $authGuard));
$this->middleware(IsDemoUser::class)->except(['index']); $this->middleware(IsDemoUser::class)->except(['index']);
} }