mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-04 20:15:47 -04:00
fix npe duplicating offer with deleted payment account
This commit is contained in:
parent
e6b29b88f5
commit
c333803917
@ -79,7 +79,11 @@ class DuplicateOfferDataModel extends MutableOfferDataModel {
|
||||
public void populateData(Offer offer) {
|
||||
if (offer == null)
|
||||
return;
|
||||
paymentAccount = user.getPaymentAccount(offer.getMakerPaymentAccountId());
|
||||
|
||||
PaymentAccount account = user.getPaymentAccount(offer.getMakerPaymentAccountId());
|
||||
if (account != null) {
|
||||
this.paymentAccount = account;
|
||||
}
|
||||
setMinAmount(offer.getMinAmount());
|
||||
setAmount(offer.getAmount());
|
||||
setPrice(offer.getPrice());
|
||||
|
Loading…
x
Reference in New Issue
Block a user