mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Merge pull request #1014
b73bcdf
Receive page: QR code bug fix for invalid payment ids
This commit is contained in:
commit
93565d996c
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ Rectangle {
|
|||
s += (nfields++ ? "&" : "?")
|
||||
s += "tx_amount=" + amount
|
||||
}
|
||||
var pid = paymentIdLine.text.trim()
|
||||
if (pid !== "") {
|
||||
var pid = paymentIdLine.text.trim().toLowerCase()
|
||||
if (pid !== "" && walletManager.paymentIdValid(pid)) {
|
||||
s += (nfields++ ? "&" : "?")
|
||||
s += "tx_payment_id=" + pid
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue