fix api-discontinued breaking reports

This commit is contained in:
dave 2020-04-09 13:16:56 -07:00
parent f6d1e0ba16
commit f2c6668e18
1 changed files with 3 additions and 2 deletions

View File

@ -617,8 +617,6 @@ class PriceCache(object):
self.providers.append(PROVIDER_TYPES[provider["provider"]](provider, self.log))
def get_price(self, symbol, thresh):
if symbol in self.unsupported:
return
symbol = symbol.upper()
# load from cache
price = self._load_priceinfo(symbol)
@ -626,6 +624,9 @@ class PriceCache(object):
if price and (thresh == -1 or time() - price.time < thresh):
return price
if symbol in self.unsupported:
return
return self.api_fetch(symbol)
def api_fetch(self, symbol):