Skip to content

Commit

Permalink
bug fix report/count migrated_record is None
Browse files Browse the repository at this point in the history
  • Loading branch information
extreme4all authored Aug 18, 2024
1 parent 193a892 commit dba1cff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/api/v1/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,12 +264,14 @@ async def select_report_count_v2(name: str, manual_detect: int):
async def get_report_count_v1(name: str):
""" """
migrated_record = await select_or_insert_migration(name=name)
migrated_record = migrated_record if isinstance(migrated_record, dict) else {}
is_migrated = migrated_record.get("migrated")

if is_migrated:
logger.debug("v2")
logger.debug(f"v2 - {name=}")
data = await select_report_count_v2(name=name, manual_detect=0)
else:
logger.debug("v1")
logger.debug(f"v1 - {name=}")
data = await select_report_count_v1(name=name, manual_detect=0)
return data

Expand Down

0 comments on commit dba1cff

Please sign in to comment.