fix: possible redirect url inconsistency (#1003)

This commit is contained in:
UUBulb
2025-02-24 20:53:11 +08:00
committed by GitHub
parent 41a0a7e4cc
commit 5fc1c8d83c
2 changed files with 14 additions and 10 deletions

View File

@@ -17,7 +17,8 @@ const (
)
type Oauth2State struct {
Action Oauth2LoginType
Provider string
State string
Action Oauth2LoginType
Provider string
State string
RedirectURL string
}