mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 19:49:32 +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
|
||||
protected void autoFillNameTextField() {
|
||||
setAccountNameWithString(westernUnionAccountPayload.getHolderName());
|
||||
setAccountNameWithString(westernUnionAccountPayload.getHolderName() == null ? "" : westernUnionAccountPayload.getHolderName());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue