Fixes scanning paypro twice on WP

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-15 17:37:16 -03:00
commit dff52e3b88

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) {