Additional error handling around currencies without rates

This commit is contained in:
2023-04-18 10:02:29 +01:00
parent 0825ec4a43
commit 84871d5a7c
2 changed files with 5 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ class Money(object):
rates = await self.get_rates_all()
if currency not in rates and not currency == "USD":
log.error(f"Can't create ad without rates: {currency}")
return
return (None, None)
if currency == "USD":
min_amount = min_usd
max_amount = max_usd