Merge pull request #2524 from cmgustavo/bug/wp8-14

Fixes scanning paypro twice on WP
This commit is contained in:
Matias Alejo Garcia 2015-04-16 09:43:39 -03:00
commit 9457fab3a9
1 changed files with 21 additions and 19 deletions

View File

@ -337,6 +337,7 @@ angular.module('copayApp.controllers').controller('sendController',
var self = this;
$log.debug('Fetch PayPro Request...', uri);
$timeout(function() {
fc.fetchPayPro({
payProUrl: uri,
}, function(err, paypro) {
@ -358,6 +359,7 @@ angular.module('copayApp.controllers').controller('sendController',
paypro.memo);
}
});
}, 1);
};
this.setFromUri = function(uri) {