mirror of https://github.com/m2049r/xmrwallet.git
paste bip70 (#621)
This commit is contained in:
parent
f46ba75771
commit
2c3f582672
|
@ -140,7 +140,7 @@ public class SendAddressWizardFragment extends SendWizardFragment {
|
||||||
next = null;
|
next = null;
|
||||||
} else {
|
} else {
|
||||||
// maybe a bip72 or 70 URI
|
// maybe a bip72 or 70 URI
|
||||||
String bip70 = PaymentProtocolHelper.getBip70(enteredAddress);
|
final String bip70 = PaymentProtocolHelper.getBip70(enteredAddress);
|
||||||
if (bip70 != null) {
|
if (bip70 != null) {
|
||||||
// looks good - resolve through xmr.to
|
// looks good - resolve through xmr.to
|
||||||
processBip70(bip70);
|
processBip70(bip70);
|
||||||
|
@ -198,9 +198,17 @@ public class SendAddressWizardFragment extends SendWizardFragment {
|
||||||
et.setText(address);
|
et.setText(address);
|
||||||
et.setSelection(et.getText().length());
|
et.setSelection(et.getText().length());
|
||||||
etAddress.requestFocus();
|
etAddress.requestFocus();
|
||||||
|
} else {
|
||||||
|
final String bip70 = PaymentProtocolHelper.getBip70(clip);
|
||||||
|
if (bip70 != null) {
|
||||||
|
final EditText et = etAddress.getEditText();
|
||||||
|
et.setText(clip);
|
||||||
|
et.setSelection(et.getText().length());
|
||||||
|
processBip70(bip70);
|
||||||
} else
|
} else
|
||||||
Toast.makeText(getActivity(), getString(R.string.send_address_invalid), Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), getString(R.string.send_address_invalid), Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
etPaymentId = view.findViewById(R.id.etPaymentId);
|
etPaymentId = view.findViewById(R.id.etPaymentId);
|
||||||
|
|
Loading…
Reference in New Issue