From 70cb493f4805cbb302e0e0b0675bb6f0689001b2 Mon Sep 17 00:00:00 2001 From: Luca Bernstein Date: Fri, 14 Jan 2022 08:19:52 +0100 Subject: [PATCH] Add cancel hint to automatic tx --- bot/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/controller.go b/bot/controller.go index 674f8d0..985657f 100644 --- a/bot/controller.go +++ b/bot/controller.go @@ -493,7 +493,7 @@ func (bc *BotController) handleTextState(m *tb.Message) { } return } - _, err := bc.Bot.Send(m.Sender, "Automatically created a new transaction for you.", clearKeyboard()) + _, err := bc.Bot.Send(m.Sender, "Automatically created a new transaction for you. If you think this was a mistake you can /cancel it.", clearKeyboard()) if err != nil { bc.Logf(ERROR, m, "Sending bot message failed: %s", err.Error()) }