🐛 修正 record 使用的 type

This commit is contained in:
2024-08-05 12:02:50 +08:00
parent afce74afe8
commit 5a7c54528c
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ async def make_blitz_image(player: Player) -> bytes:
page=await render(
'v2/tetrio/record/blitz',
Record(
type='personal_best',
type='best',
user=User(
id=user.ID,
name=user.name.upper(),

View File

@@ -91,7 +91,7 @@ async def make_sprint_image(player: Player) -> bytes:
page=await render(
'v2/tetrio/record/40l',
Record(
type='personal_best',
type='best',
user=User(
id=user.ID,
name=user.name.upper(),