mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-12-12 04:43:32 +01:00
fix offer book view for other cryptos
This commit is contained in:
parent
73997f711b
commit
a8c99ddad9
@ -117,8 +117,8 @@ public class OtherOfferBookViewModel extends OfferBookViewModel {
|
||||
boolean directionResult = offer.getDirection() == direction;
|
||||
boolean currencyResult = CurrencyUtil.isCryptoCurrency(offer.getCurrencyCode()) &&
|
||||
((showAllTradeCurrenciesProperty.get() &&
|
||||
!offer.getCurrencyCode().equals(GUIUtil.TOP_ALTCOIN.getCode()) &&
|
||||
offer.getCurrencyCode().equals(selectedTradeCurrency.getCode())));
|
||||
!offer.getCurrencyCode().equals(GUIUtil.TOP_ALTCOIN.getCode())) ||
|
||||
offer.getCurrencyCode().equals(selectedTradeCurrency.getCode()));
|
||||
boolean paymentMethodResult = showAllPaymentMethods ||
|
||||
offer.getPaymentMethod().equals(selectedPaymentMethod);
|
||||
boolean notMyOfferOrShowMyOffersActivated = !isMyOffer(offerBookListItem.getOffer()) || preferences.isShowOwnOffersInOfferBook();
|
||||
|
Loading…
Reference in New Issue
Block a user