From af2a12929a539320a97bf0e653db5282d35a4dc1 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 29 Jul 2014 14:30:08 -0300 Subject: [PATCH] fix uriPayment --- js/controllers/uriPayment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controllers/uriPayment.js b/js/controllers/uriPayment.js index 18c02d000..c6bd02f8d 100644 --- a/js/controllers/uriPayment.js +++ b/js/controllers/uriPayment.js @@ -2,7 +2,7 @@ angular.module('copayApp.controllers').controller('UriPaymentController', function($rootScope, $scope, $routeParams, $timeout, $location) { var data = decodeURIComponent($routeParams.data); - $rootScope.pendingPayment = copay.Structure.parseBitcoinURI($routeParams.data); + $rootScope.pendingPayment = copay.HDPath.parseBitcoinURI($routeParams.data); $scope.protocol = $rootScope.pendingPayment.protocol; $scope.address = $rootScope.pendingPayment.address;