From 6ef3cf29926f2c584ad1390622758f940287ad40 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 1 Aug 2014 15:03:17 -0700 Subject: [PATCH] paypro: set memo on comment properly. --- js/models/core/Wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index 78cd2b68f..318dc48cf 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -1020,7 +1020,7 @@ Wallet.prototype.sendPaymentTx = function(ntxid, options, cb) { options.memo = options.memo || options.comment || 'Hi server, I would like to give you some money.'; - pay.set('memo', txp.merchant.pr.pd.memo); + pay.set('memo', options.memo); return $http({ method: 'POST',