From 9d6bc7fa41df36237f62c989b710561ea71e1388 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 22 Aug 2025 01:17:38 -0500 Subject: [PATCH] don't send back all the data --- doPatchsets.go | 1 + 1 file changed, 1 insertion(+) diff --git a/doPatchsets.go b/doPatchsets.go index 5e70e46..caf73bc 100644 --- a/doPatchsets.go +++ b/doPatchsets.go @@ -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) }