Merge pull request #3147 from mpolci/join_error
Bugfix: reference to undefined variable.
This commit is contained in:
commit
f5b5eb2f1f
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ angular.module('copayApp.services')
|
||||||
|
|
||||||
root.setAndStoreFocus(walletClient.credentials.walletId, function() {
|
root.setAndStoreFocus(walletClient.credentials.walletId, function() {
|
||||||
storageService.storeProfile(root.profile, function(err) {
|
storageService.storeProfile(root.profile, function(err) {
|
||||||
return cb(null, secret);
|
return cb(null, opts.secret);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue