HabitRPG / habitica

A habit tracker app which treats your goals like a Role Playing Game.
https://habitica.com
Other
12.02k stars 4.1k forks source link

Date format corrections #15333

Closed SabreCat closed 1 month ago

SabreCat commented 1 month ago

Previously, the cron server library recorded the nextDue field in tasks, and the exp and todos array elements on the user, in JavaScript Date format. Elsewhere, these fields are updated using ISO date strings, leading to a mix of formats within the same data field.

Now, these updates use toISOString() to format the dates, keeping the format more consistent.