mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
Add missing return in oidc.go
This commit is contained in:
parent
e8faff4fe2
commit
200c10e48c
4
oidc.go
4
oidc.go
@ -162,7 +162,7 @@ func (h *Headscale) OIDCCallback(ctx *gin.Context) {
|
||||
Msg("Failed to decode id token claims")
|
||||
ctx.String(
|
||||
http.StatusBadRequest,
|
||||
fmt.Sprintf("Failed to decode id token claims"),
|
||||
"Failed to decode id token claims",
|
||||
)
|
||||
|
||||
return
|
||||
@ -272,6 +272,8 @@ func (h *Headscale) OIDCCallback(ctx *gin.Context) {
|
||||
</html>
|
||||
|
||||
`, claims.Email)))
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
log.Error().
|
||||
|
Loading…
Reference in New Issue
Block a user