More contract-related adjustments

This commit is contained in:
2017-08-14 15:31:58 +02:00
parent bc19363bf9
commit 576e2741a9
4 changed files with 6 additions and 12 deletions
+1 -2
View File
@@ -27,8 +27,7 @@ export default Ember.Service.extend({
return this.get('ipfs').cat(hash, { buffer: true }).then(res => {
return res.toString();
}, err => {
Ember.Logger.error('[ipfs] error trying to fetch file', hash, err);
throw err;
Ember.Logger.warn('[ipfs] error trying to fetch file', hash, err);
});
}