# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Azz 2022-08-17 19:31:26 +01:00
commit b6d324be69
No known key found for this signature in database
GPG Key ID: FA4B7CA14E83F106
2 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,12 @@
- Add ability to connect to PostgreSQL over TLS/SSL [#745](https://github.com/juanfont/headscale/pull/745) - Add ability to connect to PostgreSQL over TLS/SSL [#745](https://github.com/juanfont/headscale/pull/745)
## 0.16.3 (2022-08-17)
### Changes
- Fix issue with OIDC authentication [#747](https://github.com/juanfont/headscale/pull/747)
## 0.16.2 (2022-08-14) ## 0.16.2 (2022-08-14)
### Changes ### Changes

View File

@ -318,7 +318,7 @@ func extractIDTokenClaims(
idToken *oidc.IDToken, idToken *oidc.IDToken,
) (*IDTokenClaims, error) { ) (*IDTokenClaims, error) {
var claims IDTokenClaims var claims IDTokenClaims
if err := idToken.Claims(claims); err != nil { if err := idToken.Claims(&claims); err != nil {
log.Error(). log.Error().
Err(err). Err(err).
Caller(). Caller().