Fixes #6844 -- Better handling of empty strings on homepage redirect URL.

This commit is contained in:
Buster Neece 2024-01-10 02:14:35 -06:00
parent b1cd507b50
commit 5cee0b666b
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ class Settings implements Stringable
public function getHomepageRedirectUrl(): ?string
{
return Types::stringOrNull($this->homepage_redirect_url);
return Types::stringOrNull($this->homepage_redirect_url, true);
}
public function setHomepageRedirectUrl(?string $homepageRedirectUrl): void