mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 18:56:59 +01:00
Allow NullpointerException to be thrown for invalid offers
It is handled properly and will remove offers from being exported
This commit is contained in:
parent
e9dd7d6fed
commit
f53a41ee7a
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ public class OfferForJson {
|
|||
this.currencyCode = currencyCode;
|
||||
this.minAmount = minAmount.value;
|
||||
this.amount = amount.value;
|
||||
this.price = price != null ? price.getValue() : 0;
|
||||
this.price = price.getValue();
|
||||
this.date = date.getTime();
|
||||
this.id = id;
|
||||
this.useMarketBasedPrice = useMarketBasedPrice;
|
||||
|
|
Loading…
Add table
Reference in a new issue