Skip to content

Commit

Permalink
fix(ScoreCardEmbed): I may be stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi committed Mar 18, 2024
1 parent 58fbcc6 commit dd2fe69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/components/score_card_embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(

self.set_footer(text=" • ".join(footer_sections))

if isinstance(record, MusicRecord) and record.play_count is not None:
if isinstance(record, MusicRecord) and record.ajc_count is not None:
score_data += f"\n▸ AJC count: {record.ajc_count}"

if isinstance(record, DetailedRecentRecord):
Expand Down

0 comments on commit dd2fe69

Please sign in to comment.