Commit 87137e5e authored by chenweijian's avatar chenweijian

3.7

parent a25c181a
...@@ -327,6 +327,16 @@ func GetPopularGroups(c *gin.Context) (*mycontext.MyContext, error) { ...@@ -327,6 +327,16 @@ func GetPopularGroups(c *gin.Context) (*mycontext.MyContext, error) {
} }
medals := make([]medal_cv.PicElement, 0) medals := make([]medal_cv.PicElement, 0)
// 补上房间流水勋章
var pe *medal_cv.PicElement
_, pe, err = medal_cv.GetGroupConsumeMedal(model, i.ImGroupId)
if err != nil {
model.Log.Infof("GetPopularGroups: GetGroupConsumeMedal: %s", err.Error())
} else if pe != nil {
medals = append(medals, medal_cv.PicElement{PicUrl: pe.PicUrl})
}
if m, ok := groupMedals[i.ImGroupId]; ok { if m, ok := groupMedals[i.ImGroupId]; ok {
for _, j := range m { for _, j := range m {
mId := uint32(j) mId := uint32(j)
...@@ -338,15 +348,6 @@ func GetPopularGroups(c *gin.Context) (*mycontext.MyContext, error) { ...@@ -338,15 +348,6 @@ func GetPopularGroups(c *gin.Context) (*mycontext.MyContext, error) {
} }
} }
// 补上房间流水勋章
var pe *medal_cv.PicElement
_, pe, err = medal_cv.GetGroupConsumeMedal(model, i.ImGroupId)
if err != nil {
model.Log.Infof("GetPopularGroups: GetGroupConsumeMedal: %s", err.Error())
} else if pe != nil {
medals = append(medals, medal_cv.PicElement{PicUrl: pe.PicUrl})
}
var password *string = nil var password *string = nil
if len(i.Password) > 0 && i.Owner != myUserId { if len(i.Password) > 0 && i.Owner != myUserId {
emptyStr := "" emptyStr := ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment