mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-02-19 11:48:51 +00:00
fix uri parsing
This commit is contained in:
parent
9677d928be
commit
d08eec3964
@ -97,7 +97,7 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent)
|
||||
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
||||
{
|
||||
// return if URI is not valid or is no dogecoin: URI
|
||||
if(!uri.isValid() || uri.scheme() != QString("bitcoin"))
|
||||
if(!uri.isValid() || uri.scheme() != QString("dogecoin"))
|
||||
return false;
|
||||
|
||||
SendCoinsRecipient rv;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user