mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-03 17:40:10 +00:00
fix NPE selecting Western Union in legacy app
This commit is contained in:
parent
8a0612a245
commit
341ae2bef0
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ public class WesternUnionForm extends PaymentMethodForm {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void autoFillNameTextField() {
|
protected void autoFillNameTextField() {
|
||||||
setAccountNameWithString(westernUnionAccountPayload.getHolderName());
|
setAccountNameWithString(westernUnionAccountPayload.getHolderName() == null ? "" : westernUnionAccountPayload.getHolderName());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue