idac: bugfixes

This commit is contained in:
UncleJim 2024-05-04 14:13:41 +08:00
parent 55e7b3770a
commit 738027e132
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class IDACSeason2(IDACBase):
) as f:
self.logger.debug(f"Loading round info {round}...")
tmp = json.load(f)
self.last_round_event_id = await self.data.rounds._try_load_round_event(tmp["last_round_event_id"], tmp)
self.last_round_event_id = await self.data.rounds._try_load_round_event(tmp["round_event_id"], tmp)
#self.last_round_event.append(self._fix_dates(tmp))
self.logger.debug(f"Loaded round id for database: {self.last_round_event_id}...")