diff --git a/patchset.Send.go b/patchset.Send.go index f8fe706..09d42c6 100644 --- a/patchset.Send.go +++ b/patchset.Send.go @@ -67,6 +67,9 @@ func (f *Forge) submitPatchset(pset *Patchset) error { 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])) log.Info(string(body)) + if err := newpb.UnmarshalTEXT(body[2:]); err == nil { + log.Info("wow, that did work. newpb.Len() =", newpb.Len()) + } return err }