diff options
Diffstat (limited to 'plumbing/protocol/packp/updreq_decode.go')
-rw-r--r-- | plumbing/protocol/packp/updreq_decode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/protocol/packp/updreq_decode.go b/plumbing/protocol/packp/updreq_decode.go index 51e8183..c15d49c 100644 --- a/plumbing/protocol/packp/updreq_decode.go +++ b/plumbing/protocol/packp/updreq_decode.go @@ -225,7 +225,7 @@ func parseCommand(b []byte) (*Command, error) { return nil, errInvalidNewObjId(err) } - return &Command{Old: oh, New: nh, Name: n}, nil + return &Command{Old: oh, New: nh, Name: plumbing.ReferenceName(n)}, nil } func parseHash(s string) (plumbing.Hash, error) { |