Merge pull request '1' (#779) from BUG-20241105-Robin into main

Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/779
This commit is contained in:
chenhao 2024-11-05 21:22:36 +08:00
commit 1325588c32
1 changed files with 4 additions and 2 deletions

View File

@ -2773,8 +2773,10 @@ func (s *Service) ApiUpdateZone(ctx *gin.Context, req *zoneproto.ApiUpdateReq) (
return
}
req.Zone.Profile = goproto.String(profile)
s.CreateZoneTextAudit(ctx, oldZone, req.Zone)
if profile != "" {
req.Zone.Profile = goproto.String(profile)
s.CreateZoneTextAudit(ctx, oldZone, req.Zone)
}
return
}