diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 01:17:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-28 19:30:29 -0500 |
| commit | 9d6bc7fa41df36237f62c989b710561ea71e1388 (patch) | |
| tree | 7109e9ac63cbb37e2df7e85176d196b7963587cd /doPatchsets.go | |
| parent | 2be94a377ab7f15b1b82db9ab9fe6744852e5146 (diff) | |
don't send back all the data
Diffstat (limited to 'doPatchsets.go')
| -rw-r--r-- | doPatchsets.go | 1 |
1 files changed, 1 insertions, 0 deletions
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) } |
