scan is working!

This commit is contained in:
Matias Alejo Garcia 2014-08-20 21:05:44 -04:00
commit c1564ae015
2 changed files with 3 additions and 1 deletions

View file

@ -119,7 +119,7 @@ angular.module('copayApp.controllers').controller('JoinController',
walletFactory.network.on('badSecret', function() {});
Passphrase.getBase64Async($scope.joinPassword, function(passphrase) {
walletFactory.joinCreateSession($scope.connectionId, $scope.nickname, passphrase, $scope.enterPrivate ? $scope.private : 'null', function(err, w) {
walletFactory.joinCreateSession($scope.connectionId, $scope.nickname, passphrase, $scope.enterPrivate ? $scope.private : null, function(err, w) {
$scope.loading = false;
if (err || !w) {
if (err === 'joinError')