mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
Merge pull request #184
23e1638
Receive: fix null dereference (moneromooo.monero)
This commit is contained in:
commit
08fb140730
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ Rectangle {
|
|||
property alias integratedAddressText : integratedAddressLine.text
|
||||
|
||||
function updatePaymentId(payment_id) {
|
||||
if (typeof appWindow.currentWallet === 'undefined')
|
||||
if (typeof appWindow.currentWallet === 'undefined' || appWindow.currentWallet == null)
|
||||
return
|
||||
// generate a new one if not given as argument
|
||||
if (typeof payment_id === 'undefined') {
|
||||
|
|
Loading…
Reference in a new issue