Add error callback to getFile() call (#4092)

This commit is contained in:
Marco Polci 2016-04-19 17:42:19 +02:00 committed by Gustavo Maximiliano Cortez
commit ade2508b1b
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -116,8 +116,8 @@ angular.module('copayApp.services')
fileEntry.remove(function() { fileEntry.remove(function() {
console.log('File removed.'); console.log('File removed.');
return cb(); return cb();
}, cb, cb); }, cb);
}); }, cb);
}); });
}; };