Skip to content

Commit

Permalink
Workaround URI checking
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-c committed Jan 31, 2025
1 parent 85e69e7 commit bb732e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/server/API/Options/StartupExtensions.Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,7 @@ static AuthenticationOptions GetAuthenticationOptions(IConfiguration config)
auth.Logout.Enabled = config.GetValue<bool>(Config.Authentication.Logout.Enabled);
if (auth.Logout.Enabled && !string.IsNullOrWhiteSpace(logout))
{
logout = config.GetByProxy(Config.Authentication.Logout.URI);
auth.Logout.URI = new Uri(logout);
}

Expand Down

0 comments on commit bb732e2

Please sign in to comment.