From 5f253ab9d33de63c30fadf876de98180423eea70 Mon Sep 17 00:00:00 2001 From: Leufolium Date: Fri, 8 Mar 2024 15:22:33 +0800 Subject: [PATCH] fix --- app/mix/service/utilservice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mix/service/utilservice.go b/app/mix/service/utilservice.go index b7af11b9..71ea6572 100644 --- a/app/mix/service/utilservice.go +++ b/app/mix/service/utilservice.go @@ -833,7 +833,7 @@ func (s *Service) utilGetStreamerRecommListVO(ctx *gin.Context, recommlist []int return make([]*streamerproto.ApiListExtVO, 0), nil } - if consts.StreamerRecommThroughput > recommListLength { + if consts.StreamerRecommThroughput < recommListLength { upperBound = consts.StreamerRecommThroughput }