From fcace69cbde4c3c5f27e14c1bdc97755f336da0f Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Wed, 17 Sep 2025 00:17:14 +0300 Subject: [PATCH] capabilities: fix definition of a month --- pkg/connector/capabilities.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/connector/capabilities.go b/pkg/connector/capabilities.go index 4e2874b5..7a2a7c58 100644 --- a/pkg/connector/capabilities.go +++ b/pkg/connector/capabilities.go @@ -182,7 +182,7 @@ func hashEmojiList(emojis []string) string { func makeTimerList() []jsontime.Milliseconds { const day = 24 * time.Hour const week = 7 * day - const month = 30 * day + const month = 31 * day const year = 365 * day return []jsontime.Milliseconds{ jsontime.MS(1 * day),