mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Show AmazonGC country in offer book.
This commit is contained in:
parent
638848de24
commit
53c6b15b9d
@ -247,6 +247,9 @@ public class PaymentAccountUtil {
|
||||
if (paymentAccount instanceof CountryBasedPaymentAccount) {
|
||||
Country country = (((CountryBasedPaymentAccount) paymentAccount)).getCountry();
|
||||
return country != null ? country.code : null;
|
||||
} else if (paymentAccount instanceof AmazonGiftCardAccount) { // GH ISSUE #6661 show Amazon country
|
||||
Country country = ((AmazonGiftCardAccount) paymentAccount).getCountry();
|
||||
return country != null ? country.code : null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user