登录bug,有可能是新用户没有userid
This commit is contained in:
@@ -278,14 +278,16 @@ func LoginInternal(ctx *Context, authType, authID, authIDType, authSecret string
|
|||||||
if authType == "weixinmini" {
|
if authType == "weixinmini" {
|
||||||
appID := strings.Split(authSecret, ",")[0]
|
appID := strings.Split(authSecret, ",")[0]
|
||||||
if appID == "wx08a5c2a8581414ff" || appID == "wx2d6949f724b2541d" { //菜市或者果园
|
if appID == "wx08a5c2a8581414ff" || appID == "wx2d6949f724b2541d" { //菜市或者果园
|
||||||
binds, err := dao.GetUserBindAuthInfo(dao.GetDB(), user.GetID(), 0, nil, "", "", "wx2bb99eb5d2c9b82c")
|
if user != nil {
|
||||||
if err != nil {
|
binds, err := dao.GetUserBindAuthInfo(dao.GetDB(), user.GetID(), 0, nil, "", "", "wx2bb99eb5d2c9b82c")
|
||||||
return authInfo, err
|
if err != nil {
|
||||||
}
|
return authInfo, err
|
||||||
if len(binds) == 0 {
|
}
|
||||||
authInfo.IsExistOpenID = false
|
if len(binds) == 0 {
|
||||||
} else {
|
authInfo.IsExistOpenID = false
|
||||||
authInfo.IsExistOpenID = true
|
} else {
|
||||||
|
authInfo.IsExistOpenID = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user