From 40b20b1b50fb446ec24bc5925be7601ebc1a2c6f Mon Sep 17 00:00:00 2001 From: skobkin Date: Wed, 30 Oct 2024 16:12:39 +0000 Subject: [PATCH] Raising the limit of history container size --- bot/message_history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/message_history.go b/bot/message_history.go index af857da..781e518 100644 --- a/bot/message_history.go +++ b/bot/message_history.go @@ -5,7 +5,7 @@ import ( "log/slog" ) -const HistoryLength = 50 +const HistoryLength = 150 type Message struct { Name string -- 2.43.5