Skip to content

Commit

Permalink
feat: fix Auto-login causing AuthCodeWithPKCE Failures (#2911)
Browse files Browse the repository at this point in the history
  • Loading branch information
filwaline committed Apr 30, 2024
1 parent 227e938 commit 199f1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/static_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func fastAutoSignin(ctx *context.Context) (string, error) {
scope := ctx.Input.Query("scope")
state := ctx.Input.Query("state")
nonce := ""
codeChallenge := ""
codeChallenge := ctx.Input.Query("code_challenge")
if clientId == "" || responseType != "code" || redirectUri == "" {
return "", nil
}
Expand Down

0 comments on commit 199f1d4

Please sign in to comment.