Skip to content

Commit

Permalink
sync get record shouldnt unmarshal (#815)
Browse files Browse the repository at this point in the history
allows this to work on non bsky.app records
  • Loading branch information
bnewbold authored Dec 20, 2024
2 parents 7e16f33 + e06f58c commit 82305ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repomgr/repomgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func (rm *RepoManager) GetRecordProof(ctx context.Context, user models.Uid, coll
return cid.Undef, nil, err
}

_, _, err = r.GetRecord(ctx, collection+"/"+rkey)
_, _, err = r.GetRecordBytes(ctx, collection+"/"+rkey)
if err != nil {
return cid.Undef, nil, err
}
Expand Down

0 comments on commit 82305ef

Please sign in to comment.