fix isComplete call

This commit is contained in:
Matias Alejo Garcia 2016-03-28 15:39:35 -03:00
commit 62f125f538

View file

@ -52,7 +52,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
self.resetForm();
$scope.search = '';
if (profileService.focusedClient && profileService.focusedClient.isComplete) {
if (profileService.focusedClient && profileService.focusedClient.isComplete()) {
self.setAddress();
self.setSendFormInputs();
}