mirror of
https://github.com/m2049r/xmrwallet
synced 2025-05-08 05:58:48 +02:00
catch cases where the qr code produces a null monero address (#702)
This commit is contained in:
parent
82b25df7ad
commit
f40c3d6c6d
@ -191,7 +191,7 @@ public class BarcodeData {
|
||||
}
|
||||
}
|
||||
|
||||
if (!Wallet.isAddressValid(address)) {
|
||||
if ((address == null) || !Wallet.isAddressValid(address)) {
|
||||
Timber.d("address invalid");
|
||||
return null;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user