Skip to content

Commit 7f85610

Browse files
authored
Fix openidConnect source regression from #16544 (#16759)
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>
1 parent 208ae9e commit 7f85610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/auth/source/oauth2/providers_openid.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type OpenIDProvider struct {
1818

1919
// Name provides the technical name for this provider
2020
func (o *OpenIDProvider) Name() string {
21-
return "openidconnect"
21+
return "openidConnect"
2222
}
2323

2424
// DisplayName returns the friendly name for this provider

0 commit comments

Comments
 (0)