From a5f1525009640eccf058d2745abbfc889c0e0be5 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 21 Jul 2024 06:25:12 +0000 Subject: [PATCH] Fix exception on remote authentication --- src/Security/Authentication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Authentication.php b/src/Security/Authentication.php index 91fe1a0487..8589ad4367 100644 --- a/src/Security/Authentication.php +++ b/src/Security/Authentication.php @@ -453,7 +453,7 @@ class Authentication */ public function setUnauthenticatedVisitor(string $url) { - if (Strings::compareLink($this->session->get('visitor_home'), $url)) { + if (Strings::compareLink($this->session->get('visitor_home', ''), $url)) { return; }