Skip to content

Commit

Permalink
Fix SSO generating invalid URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Aug 9, 2023
1 parent d3e64c1 commit 3193da2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ final class SSOAuthenticationService: NSObject {

var ssoRedirectPath = SSOURLConstants.Paths.redirect

if let identityProvider = identityProvider {
if let identityProvider = identityProvider, !identityProvider.isEmpty {
ssoRedirectPath.append("/\(identityProvider)")
}

Expand Down
1 change: 1 addition & 0 deletions changelog.d/pr-7639.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix bug in SSO URL generation that was non-compliant with the spec.

0 comments on commit 3193da2

Please sign in to comment.