mirror of https://github.com/embarklabs/embark.git
fix arrows in ipfs get by using ipfsConnection.get
This commit is contained in:
parent
586ecd00c8
commit
2907510b6e
|
@ -37,7 +37,7 @@ __embarkIPFS.saveText = function(text) {
|
|||
var connectionError = new Error('No IPFS connection. Please ensure to call Embark.Storage.setProvider()');
|
||||
reject(connectionError);
|
||||
}
|
||||
self.ipfsConnection.add((new self.ipfsConnection.Buffer(text)), function(err, result) {
|
||||
self.ipfsConnection.add(self.ipfsConnection.Buffer.from(text), function(err, result) {
|
||||
if (err) {
|
||||
reject(err);
|
||||
} else {
|
||||
|
@ -58,10 +58,11 @@ __embarkIPFS.get = function(hash) {
|
|||
var connectionError = new Error('No IPFS connection. Please ensure to call Embark.Storage.setProvider()');
|
||||
reject(connectionError);
|
||||
}
|
||||
self.ipfsConnection.object.get(hash).then(function(node) {
|
||||
resolve(node.data.toString());
|
||||
}).catch(function(err) {
|
||||
reject(err);
|
||||
self.ipfsConnection.get(hash, function (err, files) {
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
resolve(files[0].content.toString());
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue