Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 2683c7e

Browse files
vmxdaviddias
authored andcommitted
fix(dag): js-ipld format resolver take the raw block
The js-ipld formats API changed, they now take a raw data block rather than an IPFS block.
1 parent d2b203b commit 2683c7e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/dag/get.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ module.exports = (send) => {
3535
}, cb)
3636
},
3737
(resolved, cb) => {
38-
block(send).get(new CID(resolved['Cid']['/']), (err, blk) => cb(err, blk, resolved['RemPath']))
38+
block(send).get(new CID(resolved['Cid']['/']), (err, ipfsBlock) => {
39+
cb(err, ipfsBlock, resolved['RemPath'])
40+
})
3941
},
40-
(blk, path, cb) => {
41-
if (blk.cid.codec === 'dag-cbor') {
42-
dagCBOR.resolver.resolve(blk, path, cb)
42+
(ipfsBlock, path, cb) => {
43+
if (ipfsBlock.cid.codec === 'dag-cbor') {
44+
dagCBOR.resolver.resolve(ipfsBlock.data, path, cb)
4345
}
44-
if (blk.cid.codec === 'dag-pb') {
45-
dagPB.resolver.resolve(blk, path, cb)
46+
if (ipfsBlock.cid.codec === 'dag-pb') {
47+
dagPB.resolver.resolve(ipfsBlock.data, path, cb)
4648
}
4749
}
4850
], callback)

0 commit comments

Comments
 (0)