mirror of https://github.com/m2049r/xmrwallet.git
catch NPE (#655)
This commit is contained in:
parent
b978396a38
commit
9c921183ab
|
@ -68,6 +68,9 @@ public class ExchangeEditText extends LinearLayout {
|
||||||
}
|
}
|
||||||
boolean ok = true;
|
boolean ok = true;
|
||||||
String nativeAmount = getNativeAmount();
|
String nativeAmount = getNativeAmount();
|
||||||
|
if (nativeAmount == null) {
|
||||||
|
ok = false;
|
||||||
|
} else {
|
||||||
try {
|
try {
|
||||||
double amount = Double.parseDouble(nativeAmount);
|
double amount = Double.parseDouble(nativeAmount);
|
||||||
if ((amount < min) || (amount > max)) {
|
if ((amount < min) || (amount > max)) {
|
||||||
|
@ -78,6 +81,7 @@ public class ExchangeEditText extends LinearLayout {
|
||||||
Timber.e(ex.getLocalizedMessage());
|
Timber.e(ex.getLocalizedMessage());
|
||||||
ok = false;
|
ok = false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
shakeAmountField();
|
shakeAmountField();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue