mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 10:22:18 +01:00
Add missing linebreak
This commit is contained in:
parent
085f6b354b
commit
a33923cc1e
@ -342,9 +342,9 @@ class OfferBookViewModel extends ActivatableViewModel {
|
||||
List<String> acceptedBanks = offer.getAcceptedBankIds();
|
||||
if (acceptedCountryCodes != null && !acceptedCountryCodes.isEmpty()) {
|
||||
if (CountryUtil.containsAllSepaEuroCountries(acceptedCountryCodes))
|
||||
result += Res.get("offerbook.offerersAcceptedBankSeatsEuro");
|
||||
result += "\n" +Res.get("offerbook.offerersAcceptedBankSeatsEuro");
|
||||
else
|
||||
result += Res.get("offerbook.offerersAcceptedBankSeats", CountryUtil.getNamesByCodesString(acceptedCountryCodes));
|
||||
result += "\n" +Res.get("offerbook.offerersAcceptedBankSeats", CountryUtil.getNamesByCodesString(acceptedCountryCodes));
|
||||
} else if (acceptedBanks != null && !acceptedBanks.isEmpty()) {
|
||||
if (offer.getPaymentMethod().equals(PaymentMethod.SAME_BANK))
|
||||
result += "\n" + Res.getWithCol("shared.bankName") + " " + acceptedBanks.get(0);
|
||||
|
Loading…
Reference in New Issue
Block a user