From d4f287b92b87440b46ec9dbcad887e15822c1281 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 10 Apr 2024 06:48:56 +0200 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/8771 --- app/Console/HaveAccess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/HaveAccess.php b/app/Console/HaveAccess.php index a3e23b4c..bd2f1b84 100644 --- a/app/Console/HaveAccess.php +++ b/app/Console/HaveAccess.php @@ -42,7 +42,7 @@ trait HaveAccess $headerToken = (string)request()->header('Authorization'); if ('' !== $headerToken) { $token = str_replace('Bearer ', '', $headerToken); - $this->line('Overrule token with token from Authorization heade r.'); + $this->line('Overrule token with token from Authorization header.'); } $this->line(sprintf('Trying to connect to %s...', $url));