bugfixing

This commit is contained in:
MuslemRahimi 2024-11-12 17:58:06 +01:00
parent b9b69f0391
commit 472462d276

View File

@ -336,6 +336,7 @@ async def get_index_list():
if quote_data:
item = {
'symbol': symbol,
'name': quote_data('name',None),
'price': round(quote_data.get('price', 0), 2),
'changesPercentage': round(quote_data.get('changesPercentage', 0), 2),
'marketCap': quote_data.get('marketCap', 0),