This commit is contained in:
Leufolium 2024-02-05 19:03:35 +08:00
parent 27e8d492cc
commit 242074a491
1 changed files with 4 additions and 0 deletions

View File

@ -331,6 +331,10 @@ func (s *Service) utilUnThumbsUpMoment(ctx *gin.Context, req *momentproto.OpThum
func (s *Service) utilFillMomentsStreamerInfo(ctx *gin.Context, moments []*dbstruct.Moment, option int) (vos []momentproto.MomentVO, ec errcode.ErrCode) {
ec = errcode.ErrCodeMomentSrvOk
if len(moments) == 0 {
return
}
// 组装midList
midSet := make(map[int64]*dbstruct.Moment)
for _, moment := range moments {