Add missing linebreak

This commit is contained in:
Manfred Karrer 2017-10-21 09:11:18 -05:00
parent 085f6b354b
commit a33923cc1e
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -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);