URLs containing a / after the address no longer cause parsing errors.

This commit is contained in:
Ross Nicoll 2014-08-02 19:56:06 +01:00
parent 9fcb410195
commit c7f3876d4a

View file

@ -117,6 +117,10 @@ bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
SendCoinsRecipient rv;
rv.address = uri.path();
// Trim any following forward slash which may have been added by the OS
if (rv.address.endsWith("/")) {
rv.address.truncate(rv.address.length() - 1);
}
rv.amount = 0;
#if QT_VERSION < 0x050000