Skip to content

Commit

Permalink
Make the Notification prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseudonian committed Feb 2, 2025
1 parent d3d907f commit 4c7d9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ function handleWebSocket () {
for (const { internalName, name, endsAt } of data.active) {
activeConsumables[internalName as PseudoCoinConsumableNames]++
allConsumableTimes[internalName as PseudoCoinConsumableNames].push(endsAt)
message += `${name}, until ${endsAt}\n`
message += `${name}, until ${new Date(endsAt)}\n`
}

Notification(message)
Expand Down

0 comments on commit 4c7d9aa

Please sign in to comment.