From 5ef25b96f4b99efb75d6cebca0d0e5702fa278fb Mon Sep 17 00:00:00 2001 From: lwl0608 Date: Mon, 6 May 2024 18:02:06 +0800 Subject: [PATCH] fix zone VIP --- app/mix/service/apiservice.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/mix/service/apiservice.go b/app/mix/service/apiservice.go index 6ed61a12..d4292d2d 100644 --- a/app/mix/service/apiservice.go +++ b/app/mix/service/apiservice.go @@ -2825,7 +2825,9 @@ func (s *Service) ApiGetZoneMomentListByZid(ctx *gin.Context, req *zonemomentpro zoneZidMap[zone.GetId()] = zone } if zoneZidMap[util.DerefInt64(req.Zid)] == nil { - if zidZuMap[util.DerefInt64(req.Zid)] == nil { + if IsZoneVIP(req.BaseRequest.Mid) { + logger.Info("_ZoneVIP moment mid: %v, zid: %v", req.BaseRequest.Mid, req.Zid) + } else if zidZuMap[util.DerefInt64(req.Zid)] == nil { logger.Error("Visitor has not unlocked this zone, req: %v, err: %v", util.ToJson(req), err) ec = errcode.ErrCodeUnlockedZone return