ソースを参照

fix: fix the bug when get user id list

master
shenjiachi 4日前
コミット
6bbc62fc84
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      app/hdl/friend_circle/hdl_friend_circle.go

+ 2
- 2
app/hdl/friend_circle/hdl_friend_circle.go ファイルの表示

@@ -85,7 +85,7 @@ func MySelfList(c *gin.Context) {
if friendCircle.ImUid != 0 {
imUserIds[i] = friendCircle.ImUid
} else {
userIds[i] = friendCircle.Uid
userIds = append(userIds, friendCircle.ImUid)
}

}
@@ -363,7 +363,7 @@ func RecommendList(c *gin.Context) {
if friendCircle.ImUid != 0 {
imUserIds[i] = friendCircle.ImUid
} else {
userIds[i] = friendCircle.Uid
userIds = append(userIds, friendCircle.Uid)
}
}



読み込み中…
キャンセル
保存