mirror of
https://github.com/friendica/friendica
synced 2024-11-18 03:03:41 +00:00
Fix exception on remote authentication
This commit is contained in:
parent
76bf2fa6ce
commit
a5f1525009
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ class Authentication
|
||||||
*/
|
*/
|
||||||
public function setUnauthenticatedVisitor(string $url)
|
public function setUnauthenticatedVisitor(string $url)
|
||||||
{
|
{
|
||||||
if (Strings::compareLink($this->session->get('visitor_home'), $url)) {
|
if (Strings::compareLink($this->session->get('visitor_home', ''), $url)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue