This commit is contained in:
Matias Alejo Garcia 2015-04-27 11:28:11 -03:00
commit 28125773c8

View file

@ -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);
});
};