fix fingerprint setting, remove activity from home

This commit is contained in:
Matias Alejo Garcia 2016-09-01 16:23:27 -03:00
commit 333b4f45a0
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
9 changed files with 44 additions and 34 deletions

View file

@ -995,10 +995,17 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
};
root.setTouchId = function(wallet, enabled, cb) {
var opts = {
touchIdFor: {}
};
opts.touchIdFor[wallet.id] = enabled;
fingerprintService.check(wallet, function(err) {
if (err) return cb(err); {
$log.debug(err);
return;
if (err) {
opts.touchIdFor[wallet.id] = !enabled;
$log.debug('Error with fingerprint:' + err);
return cb(err);
}
configService.set(opts, cb);
});