Avoid disabling the memo field in SendTransactionActivity if the QR code read's memo does not start with PP.
This commit is contained in:
parent
981a14723e
commit
1a064c0a5e
1 changed files with 2 additions and 1 deletions
|
@ -376,7 +376,8 @@ class SendTransactionFragment : ConnectedFragment(), ZXingScannerView.ResultHand
|
|||
|
||||
if (invoice.memo != null) {
|
||||
tietMemo.setText(invoice.memo)
|
||||
tietMemo.isEnabled = false
|
||||
if (invoice.memo.startsWith("PP"))
|
||||
tietMemo.isEnabled = false
|
||||
}
|
||||
|
||||
var amount = 0.0
|
||||
|
|
Loading…
Reference in a new issue