diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 01:29:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 01:29:55 -0500 |
| commit | f020b6f828ff4b040a81ae7e0b5dc63184e558ea (patch) | |
| tree | 364a875982948b9387b7908362f587f0f9dfcf9a /patchset.Send.go | |
| parent | bab3fcd479b853dd490626ed132b0daa722f563c (diff) | |
so dumb I am sometimes
Diffstat (limited to 'patchset.Send.go')
| -rw-r--r-- | patchset.Send.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patchset.Send.go b/patchset.Send.go index 09d42c6..d71df40 100644 --- a/patchset.Send.go +++ b/patchset.Send.go @@ -62,7 +62,7 @@ func (f *Forge) submitPatchset(pset *Patchset) error { } newpb := NewPatches() - if err := newpb.UnmarshalTEXT(body); err != nil { + if err := newpb.Unmarshal(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:100]) log.Infof("TODO: try to identify data here len(body)=%d body[0:40]=%s\n", len(body), body[0:40]) log.Info("BODY START:", body[0:10], string(body[0:10])) |
