Fix creating ads with the incorrect provider when not whitelisted
This commit is contained in:
@@ -685,22 +685,21 @@ class LocalPlatformClient(ABC):
|
||||
to_return = []
|
||||
for asset, countrycode, currency, provider in dist_list:
|
||||
if (asset, countrycode, currency, provider) not in our_ads:
|
||||
if currency in supported_currencies:
|
||||
if currency not in account_info:
|
||||
continue
|
||||
# Create the actual ad and pass in all the stuff
|
||||
rtrn = await self.create_ad(
|
||||
asset,
|
||||
countrycode,
|
||||
currency,
|
||||
provider,
|
||||
payment_details=account_info[currency],
|
||||
ad=ad,
|
||||
)
|
||||
# Bail on first error, let's not continue
|
||||
if rtrn is False:
|
||||
return False
|
||||
to_return.append(rtrn)
|
||||
if currency not in supported_currencies:
|
||||
continue
|
||||
# Create the actual ad and pass in all the stuff
|
||||
rtrn = await self.create_ad(
|
||||
asset,
|
||||
countrycode,
|
||||
currency,
|
||||
provider,
|
||||
payment_details=account_info[currency],
|
||||
ad=ad,
|
||||
)
|
||||
# Bail on first error, let's not continue
|
||||
if rtrn is False:
|
||||
return False
|
||||
to_return.append(rtrn)
|
||||
return to_return
|
||||
|
||||
async def redist_countries(self, ad):
|
||||
@@ -1141,9 +1140,9 @@ class LocalPlatformClient(ABC):
|
||||
distlist.append([l_currency, l_country])
|
||||
|
||||
# Iterate providers like REVOLUT, NATIONAL_BANK
|
||||
for provider in self.instance.ads_providers:
|
||||
for provider in ad.providers:
|
||||
# Iterate assets like XMR, BTC
|
||||
for asset in self.instance.ads_assets:
|
||||
for asset in ad.assets:
|
||||
# Iterate pairs of currency and country like EUR, GB
|
||||
for currency, countrycode in distlist:
|
||||
if filter_asset:
|
||||
|
||||
Reference in New Issue
Block a user