This commit is contained in:
Leufolium 2024-11-05 21:22:17 +08:00
parent 70e41a15b6
commit ba0a510301
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
}