|
@@ -104,8 +104,7 @@ func SendStationMessages(href, userId, action, msgType, title, content, link, an
|
|
|
ret MessageRet
|
|
|
cont []byte
|
|
|
)
|
|
|
-
|
|
|
- user, _ := MQFW.FindById("user", userId, "base_user_id")
|
|
|
+ user, _ := MQFW.FindById("user", userId, `{"base_user_id":1}`)
|
|
|
if user != nil && qutil.IntAll((*user)["base_user_id"]) > 0 {
|
|
|
var token string
|
|
|
identityList := config.Middleground.UserCenter.IdentityList(qutil.Int64All((*user)["base_user_id"]))
|
|
@@ -128,7 +127,6 @@ func SendStationMessages(href, userId, action, msgType, title, content, link, an
|
|
|
}
|
|
|
if token != "" {
|
|
|
androidUrl = fmt.Sprintf("%s&identity=%s", androidUrl, token)
|
|
|
- iosUrl = fmt.Sprintf("%s&identity=%s", iosUrl, token)
|
|
|
}
|
|
|
}
|
|
|
|