Skip to content

Commit

Permalink
Fix openidConnect source regression from #16544 (#16759)
Browse files Browse the repository at this point in the history
Unfortunately there is bug in #16544 meaning that openid connects aren't
being matched properly as the capitalisation in that PR is incorrect.

This PR changes the capitalisation back to what is expected.

Signed-off-by: Andrew Thornton <art27@cantab.net>
  • Loading branch information
zeripath authored Aug 22, 2021
1 parent 208ae9e commit 7f85610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/auth/source/oauth2/providers_openid.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type OpenIDProvider struct {

// Name provides the technical name for this provider
func (o *OpenIDProvider) Name() string {
return "openidconnect"
return "openidConnect"
}

// DisplayName returns the friendly name for this provider
Expand Down

0 comments on commit 7f85610

Please sign in to comment.