don't send back all the data

This commit is contained in:
Jeff Carr 2025-08-22 01:17:38 -05:00
parent 2be94a377a
commit 9d6bc7fa41
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ func savePatchset(w http.ResponseWriter, msg []byte) error {
var newp *forgepb.Patch
newp = p
newp = proto.Clone(p).(*forgepb.Patch)
newp.Data = nil // don't send back all the data
// fmt.Fprintln(w, "filename:", repo.Filename)
response.Append(newp)
}