add
This commit is contained in:
parent
9600ec1b29
commit
8e52f92b0b
|
@ -622,7 +622,7 @@ func (v *Vas) OneStepUnlockContact(ctx *gin.Context, req *vasproto.OneStepUnlock
|
|||
err = errs.ErrVasInvalidContactProduct
|
||||
return
|
||||
}
|
||||
if coinPrice <= 0 {
|
||||
if contactProductId != dbstruct.ProductIdSuperfanGiftContactWechat && coinPrice <= 0 {
|
||||
err = errs.ErrVasInvalidCoinPrice
|
||||
logger.Warn("invalid coin price, mid: %v, uid: %v, contactProductId: %v, coinPrice: %v", mid, uid, contactProductId, coinPrice)
|
||||
return
|
||||
|
|
|
@ -1540,7 +1540,7 @@ func (s *Service) utilFillZonesWithApiVOInfo(ctx *gin.Context, list []*dbstruct.
|
|||
|
||||
// 填充访客身份
|
||||
vo.VisitorRole = consts.Zone_Outsider
|
||||
if zidZuMap[zid].IsUnlockAdmission() { // 访客已解锁空间是否有该zid
|
||||
if zidZuMap[zid].IsUnlockAdmission() && tpZoneMap[zid] == nil && collabZoneMap[zid] == nil { // 访客已解锁空间是否有该zid
|
||||
vo.VisitorRole = consts.Zone_Visitor
|
||||
} else if zoneZidMap[zid] != nil { // 访客创建的空间是否有该zid
|
||||
vo.VisitorRole = consts.Zone_Creater
|
||||
|
|
Loading…
Reference in New Issue