Merge pull request #4417 from cmgustavo/bug/qr-scan-notification

Not show error when fetching paypro after qr scan
This commit is contained in:
Matias Alejo Garcia 2016-06-15 15:10:06 -03:00 committed by GitHub
commit 1415bffe94
2 changed files with 5 additions and 1 deletions

View file

@ -36,7 +36,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
$rootScope.$emit('Local/SetTab', 'send');
var form = $scope.sendForm;
if (form.address.$invalid && !self.blockUx) {
if (form.address.$invalid && !ongoingProcess.get('fetchingPayPro')) {
self.resetForm();
self.error = gettext('Could not recognize a valid Bitcoin QR Code');
}