Merge branch 'refs/heads/feat-login-website'

This commit is contained in:
junleea 2025-05-18 11:07:14 +08:00
commit ec10da0ff8
1 changed files with 3 additions and 1 deletions

View File

@ -623,10 +623,12 @@ func LoginOAuth(c *gin.Context) {
c.JSON(200, resp)
return
}
if status.Status == 0 {
worker.DelRedis(uuid) //删除uuid,只能查一次
}
resp.Code = proto.SuccessCode
resp.Message = "success"
resp.Data = status
worker.DelRedis(uuid) //删除uuid,只能查一次
c.JSON(200, resp)
}