From 8fee74883758dd8b8aae2c239158c35a09bf7457 Mon Sep 17 00:00:00 2001 From: chiko Date: Fri, 7 Nov 2025 00:24:03 +0000 Subject: [PATCH] Added "hour" to getTsNow() --- src/util.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.ts b/src/util.ts index 74c0126..7a625ec 100644 --- a/src/util.ts +++ b/src/util.ts @@ -34,6 +34,7 @@ export function getTsNow() { year: now.getFullYear(), month: now.getMonth() + 1, day: now.getDate(), + hour: now.getHours(), minute: now.getMinutes(), seconds: now.getSeconds() }