Use GBP details when currency is GBP, without checking country

This commit is contained in:
2022-02-09 14:07:55 +00:00
parent 9d04db7205
commit 06e8662c21

View File

@@ -572,7 +572,7 @@ class Agora(object):
# Substitute the currency
ad = ad.replace("$CURRENCY$", currency)
if countrycode == "GB" and currency == "GBP":
if currency == "GBP":
ad = ad.replace("$PAYMENT$", settings.Agora.GBPDetailsAd)
paymentdetailstext = paymentdetails.replace("$PAYMENT$", settings.Agora.GBPDetailsPayment)
else: