This commit is contained in:
pengtao 2021-12-20 11:34:51 +08:00
parent 96c113550d
commit b880eff9ee

View File

@ -195,8 +195,8 @@ async def getgameprice(request: Request, oldGameId: int, nums: int = 0):
else:
gameprice = db["gameprice"].find_one({"oldGameId": oldGameId},
{"_id": 0})
if gameprice:
price = gameprice.get('prices', [])
if price:
gameprice['prices'] = price[:nums]
else:
logger.error(f"get price with {oldGameId} failed\n {gameprice}")