From a2333f1eda42a1f050f9240d60ebcde1cf889f5e Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Tue, 12 Nov 2024 13:22:44 +0800 Subject: [PATCH] fix --- services/auth/oauth2.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/auth/oauth2.go b/services/auth/oauth2.go index 46d8510143675..861effd0b0b93 100644 --- a/services/auth/oauth2.go +++ b/services/auth/oauth2.go @@ -27,6 +27,9 @@ var ( // CheckOAuthAccessToken returns uid of user from oauth token func CheckOAuthAccessToken(ctx context.Context, accessToken string) int64 { + if !setting.OAuth2.Enabled { + return 0 + } // JWT tokens require a "." if !strings.Contains(accessToken, ".") { return 0