Fix weeks not support in reminder command (#1977)

This commit is contained in:
ekzyis 2025-03-17 13:15:09 -05:00 committed by GitHub
parent 4be7f12119
commit c492618d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,11 +23,11 @@ export function timeSince (timeStamp) {
} }
export function datePivot (date, export function datePivot (date,
{ years = 0, months = 0, days = 0, hours = 0, minutes = 0, seconds = 0, milliseconds = 0 }) { { years = 0, months = 0, weeks = 0, days = 0, hours = 0, minutes = 0, seconds = 0, milliseconds = 0 }) {
return new Date( return new Date(
date.getFullYear() + years, date.getFullYear() + years,
date.getMonth() + months, date.getMonth() + months,
date.getDate() + days, date.getDate() + days + weeks * 7,
date.getHours() + hours, date.getHours() + hours,
date.getMinutes() + minutes, date.getMinutes() + minutes,
date.getSeconds() + seconds, date.getSeconds() + seconds,