diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 22:43:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 22:43:40 -0500 |
| commit | e1eafe87c44a54acc99e63b5d3dd740eb387efb5 (patch) | |
| tree | 2e7770c9b08a553f820b9bc2f246c101641910ad | |
| parent | 6a1541c132277af7c905a83ccd9d825fc88c1587 (diff) | |
was using wrong protobufv0.0.116
| -rw-r--r-- | patchset.Send.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/patchset.Send.go b/patchset.Send.go index 44d9a26..7ab0df9 100644 --- a/patchset.Send.go +++ b/patchset.Send.go @@ -61,9 +61,10 @@ func (f *Forge) submitPatchset(pset *Patchset) error { return err } - newpb := NewPatchsets() + newpb := NewPatches() if err := newpb.UnmarshalTEXT(body); err != nil { log.Infof("forged DID NOT SEND BACK PROTOBUF len(body)=%d %s (TODO: look for failure on cloudflare 'is human' check here)\n", len(body), body[0:40]) + log.Infof("TODO: try to identify data here len(body)=%d body[0:40]=%s\n", len(body), body[0:40]) return err } |
