diff --git a/app/mix/controller/init.go b/app/mix/controller/init.go index 572070d3..95313d36 100644 --- a/app/mix/controller/init.go +++ b/app/mix/controller/init.go @@ -263,7 +263,7 @@ func Init(r *gin.Engine) { opMomentGroup.POST("update", middleware.JSONParamValidator(momentproto.OpUpdateReq{}), middleware.JwtAuthenticator(), OpUpdateMoment) opMomentGroup.POST("delete", middleware.JSONParamValidator(momentproto.OpDeleteReq{}), middleware.JwtAuthenticator(), OpDeleteMoment) opMomentGroup.POST("list", middleware.JSONParamValidator(momentproto.OpListReq{}), middleware.JwtAuthenticator(), OpGetMomentList) - opMomentGroup.POST("list_by_mid", middleware.JSONParamValidator(momentproto.OpListReq{}), middleware.JwtAuthenticator(), OpGetMomentListByMid) + opMomentGroup.POST("list_by_mid", middleware.JSONParamValidator(momentproto.OpListByMidReq{}), middleware.JwtAuthenticator(), OpGetMomentListByMid) opMomentGroup.POST("thumbs_up", middleware.JSONParamValidator(momentproto.OpThumbsUpReq{}), middleware.JwtAuthenticator(), OpThumbsUpMoment) opMomentGroup.POST("list_by_ids", middleware.JSONParamValidator(momentproto.OpListByIdsReq{}), middleware.JwtAuthenticator(), OpGetMomentListByIds) diff --git a/app/mix/controller/moment_op.go b/app/mix/controller/moment_op.go index 84b74a37..f523abe3 100644 --- a/app/mix/controller/moment_op.go +++ b/app/mix/controller/moment_op.go @@ -111,6 +111,8 @@ func OpGetMomentListByMid(ctx *gin.Context) { data.More = 1 } + ReplyOk(ctx, data) + } func OpGetMomentListByIds(ctx *gin.Context) { diff --git a/app/mix/service/utilservice.go b/app/mix/service/utilservice.go index 17cc79f3..8745295e 100644 --- a/app/mix/service/utilservice.go +++ b/app/mix/service/utilservice.go @@ -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 {