aboutsummaryrefslogtreecommitdiff
path: root/src/database.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/database.ts')
-rw-r--r--src/database.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/database.ts b/src/database.ts
index 887facb..51ab5d7 100644
--- a/src/database.ts
+++ b/src/database.ts
@@ -176,8 +176,8 @@ function getMemberHarpAttributes(member: CleanMember): StringNumber {
const harpAttributes: StringNumber = {}
for (const song of member.harp.songs) {
- harpAttributes[`harp_${song.completions}_completions`] = song.completions
- harpAttributes[`harp_${song.perfectCompletions}_perfect_completions`] = song.perfectCompletions
+ harpAttributes[`harp_${song.id}_completions`] = song.completions
+ harpAttributes[`harp_${song.id}_perfect_completions`] = song.perfectCompletions
}
return harpAttributes