Fix wrong resource key

This commit is contained in:
Christoph Atteneder 2018-11-29 16:33:28 +01:00
parent f191a944e6
commit c5d9bac8a6
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -120,7 +120,7 @@ public class MoneyGramAccountPayload extends PaymentAccountPayload {
" " + this.state + "\n") : "";
return Res.getWithCol("payment.account.fullName") + " " + holderName + "\n" +
state +
Res.getWithCol("payment.account.country") + " " + CountryUtil.getNameByCode(countryCode) + "\n" +
Res.getWithCol("payment.bank.country") + " " + CountryUtil.getNameByCode(countryCode) + "\n" +
Res.getWithCol("payment.email") + " " + email;
}