Skip to content

Commit 35733f5

Browse files
committed
fix: pass compatible with v1 to namesys
1 parent 1afc809 commit 35733f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

namesys/publisher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func (p *IpnsPublisher) updateRecord(ctx context.Context, k crypto.PrivKey, valu
178178
opts := opts.ProcessPublishOptions(options)
179179

180180
// Create record
181-
r, err := ipns.NewRecord(k, value, seqno, opts.EOL, opts.TTL)
181+
r, err := ipns.NewRecord(k, value, seqno, opts.EOL, opts.TTL, ipns.WithV1Compatibility(opts.CompatibleWithV1))
182182
if err != nil {
183183
return nil, err
184184
}

0 commit comments

Comments
 (0)