aboutsummaryrefslogtreecommitdiff
path: root/object/tag_parse.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-02-22 21:51:36 +0800
committerGravatar Runxi Yu2026-02-22 21:51:36 +0800
commit3a7df704f3a48015c898ea7cb694359f5b326515 (patch)
treece8a4254b704e25d0a34a7d750bf7ca040d5ca3e /object/tag_parse.go
parent*: Fix the broken comments for overescaping that python script (diff)
signatureNo signature
object: Rename ident to signature v0.1.38
Diffstat (limited to 'object/tag_parse.go')
-rw-r--r--object/tag_parse.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/object/tag_parse.go b/object/tag_parse.go
index 990aefce..ea194085 100644
--- a/object/tag_parse.go
+++ b/object/tag_parse.go
@@ -49,7 +49,7 @@ func ParseTag(body []byte, algo objectid.Algorithm) (*Tag, error) {
case "tag":
t.Name = append([]byte(nil), value...)
case "tagger":
- idt, err := ParseIdent(value)
+ idt, err := ParseSignature(value)
if err != nil {
return nil, fmt.Errorf("object: tag: tagger: %w", err)
}