fix storage getUrl method override issue

This commit is contained in:
Iuri Matias 2017-12-06 11:42:13 -05:00
parent be64d2ff6b
commit 8b313a0fc7
2 changed files with 6 additions and 6 deletions

View File

@ -309,10 +309,10 @@ EmbarkJS.Storage.setProvider = function(provider, options) {
try {
if (options === undefined) {
self.ipfsConnection = IpfsApi('localhost', '5001');
self.getUrl = "http://localhost:8080/ipfs/";
self._getUrl = "http://localhost:8080/ipfs/";
} else {
self.ipfsConnection = IpfsApi(options.server, options.port);
self.getUrl = options.getUrl || "http://localhost:8080/ipfs/";
self._getUrl = options.getUrl || "http://localhost:8080/ipfs/";
}
resolve(self);
} catch (err) {
@ -402,7 +402,7 @@ EmbarkJS.Storage.IPFS.uploadFile = function(inputSelector) {
};
EmbarkJS.Storage.IPFS.getUrl = function(hash) {
return (self.getUrl || "http://localhost:8080/ipfs/") + hash;
return (self._getUrl || "http://localhost:8080/ipfs/") + hash;
};
//=========================================================

View File

@ -227,10 +227,10 @@ EmbarkJS.Storage.setProvider = function(provider, options) {
try {
if (options === undefined) {
self.ipfsConnection = IpfsApi('localhost', '5001');
self.getUrl = "http://localhost:8080/ipfs/";
self._getUrl = "http://localhost:8080/ipfs/";
} else {
self.ipfsConnection = IpfsApi(options.server, options.port);
self.getUrl = options.getUrl || "http://localhost:8080/ipfs/";
self._getUrl = options.getUrl || "http://localhost:8080/ipfs/";
}
resolve(self);
} catch (err) {
@ -320,7 +320,7 @@ EmbarkJS.Storage.IPFS.uploadFile = function(inputSelector) {
};
EmbarkJS.Storage.IPFS.getUrl = function(hash) {
return (self.getUrl || "http://localhost:8080/ipfs/") + hash;
return (self._getUrl || "http://localhost:8080/ipfs/") + hash;
};
//=========================================================