chuni: fix misnamed var in put_net_battle

This commit is contained in:
Hay1tsme 2024-06-23 17:41:22 -04:00
parent 40a177ddcc
commit f252b8e322

View File

@ -814,7 +814,7 @@ class ChuniProfileData(BaseData):
result = await self.execute(conflict)
if result:
return result.inserted_primary_key['id']
self.logger.error(f"Failed to put net battle data for user {user_id}")
self.logger.error(f"Failed to put net battle data for user {aime_id}")
async def get_net_battle(self, aime_id: int) -> Optional[Row]:
result = await self.execute(net_battle.select(net_battle.c.user == aime_id))