From 22c2b6306976c2541701fa5a56c14a8df80fb837 Mon Sep 17 00:00:00 2001 From: Akulij Date: Mon, 5 May 2025 19:38:15 +0300 Subject: [PATCH] fix: return reservedate: callback in getDatebutton --- cmd/app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/app/main.go b/cmd/app/main.go index 0cb2556..54ee3ab 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go @@ -515,7 +515,7 @@ func getDateButton(date time.Time) (string, string) { }, " ") // Create a token similar to what GetBotContent accepts - token := fmt.Sprintf("date_%s", date.Format("200601021504")) // Example token format + token := fmt.Sprintf("reservedate:%s", date.Format("200601021504")) // Example token format return strings.Join([]string{"Пойду", formattedDate}, " "), token }