Merge pull request #3147 from mpolci/join_error

Bugfix: reference to undefined variable.
This commit is contained in:
Matias Alejo Garcia 2015-09-08 15:21:27 -03:00
commit f5b5eb2f1f
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ angular.module('copayApp.services')
root.setAndStoreFocus(walletClient.credentials.walletId, function() {
storageService.storeProfile(root.profile, function(err) {
return cb(null, secret);
return cb(null, opts.secret);
});
});
})