compare fixed

This commit is contained in:
Javier 2016-11-14 11:23:00 -03:00
parent 959707f3b7
commit b66714e572
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
var services = ['AmazonGiftCards', 'BitpayCard', 'BuyAndSell'];
lodash.each(services, function(service) {
storageService.getNextStep(service, function(err, value) {
$scope.externalServices[service] = value ? true : false;
$scope.externalServices[service] = value == 'true' ? true : false;
if (++i == services.length) return cb();
});
});