aboutsummaryrefslogtreecommitdiff
path: root/src/lib/profile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/profile.ts')
-rw-r--r--src/lib/profile.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/profile.ts b/src/lib/profile.ts
index 256dc24..cba7923 100644
--- a/src/lib/profile.ts
+++ b/src/lib/profile.ts
@@ -14,9 +14,9 @@ export function prettyTimestamp(ms: number) {
export function generateInfobox(data: CleanMemberProfile): string[] {
const result: string[] = []
- result.push(`💾 Last save: ${prettyTimestamp(data.member.lastSave * 1000)}`)
+ result.push(`💾 Last save: ${prettyTimestamp(data.member.lastSave)}`)
- result.push(`🚶 Profile created: ${prettyTimestamp(data.member.firstJoin * 1000)}`)
+ result.push(`🚶 Profile created: ${prettyTimestamp(data.member.firstJoin)}`)
result.push(`✨ Fairy souls: ${data.member.fairySouls.total}/${data.member.fairySouls.max}`)