dengbiao 3 giorni fa
parent
commit
d3dcbf261b
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. +3
    -1
      app/hdl/hdl_add_friend.go

+ 3
- 1
app/hdl/hdl_add_friend.go Vedi File

@@ -634,7 +634,9 @@ func MyFansUserList(c *gin.Context) {
var userRelatesUids []string
var userSignInMap = map[int64]interface{}{}
var results []map[string]string
var inviteTotal int
if userRelates != nil {
inviteTotal = len(*userRelates)
for _, userRelate := range *userRelates {
userRelatesUids = append(userRelatesUids, utils.Int64ToStr(userRelate.Uid))
}
@@ -685,7 +687,7 @@ func MyFansUserList(c *gin.Context) {
}

resp := md.MyFansUserListResp{
InviteTotal: len(*userRelates),
InviteTotal: inviteTotal,
ActivityUserNums: activityUserNums,
List: data,
}


Caricamento…
Annulla
Salva