paypro: reimplement `merchant` field in uri parser.

This commit is contained in:
Christopher Jeffrey 2014-07-30 11:02:22 -07:00 committed by Manuel Araoz
parent 1a0f782e6d
commit ac8f5a55bc
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ HDPath.parseBitcoinURI = function(uri) {
}); });
ret.amount = parseFloat(data.amount); ret.amount = parseFloat(data.amount);
ret.message = data.message; ret.message = data.message;
ret.merchant = data.r;
} }
return ret; return ret;