diff --git a/src/js/services/fileStorage.js b/src/js/services/fileStorage.js index 6caf360d1..b669e2686 100644 --- a/src/js/services/fileStorage.js +++ b/src/js/services/fileStorage.js @@ -102,6 +102,9 @@ angular.module('copayApp.services') // url = 'ms-appdata:///local/'; window.resolveLocalFileSystemURL(url, function(dir) { return cb(null, dir); + }, function(err) { + $log.warn(err); + return cb(err || 'Could not resolve filesystem:' + url); }); };