Update help message

This commit is contained in:
Laura Hausmann 2023-01-08 23:27:01 +01:00
parent ada850dc05
commit ee8e685cda
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -145,9 +145,12 @@ async Task BotOnMessageReceived(ITelegramBotClient botClient, Message message) {
default:
await botClient.SendTextMessageAsync(message.Chat.Id, $"""
Apologies, I can't figure out what you want me to do >w<
Message received: `{message.Text}`
Parsed command: `{command}`
Parsed query: `{query}`
Try /help for examples on how to help me understand your query!
""", replyToMessageId: message.MessageId, parseMode: ParseMode.Markdown);
break;
}
@ -155,6 +158,7 @@ async Task BotOnMessageReceived(ITelegramBotClient botClient, Message message) {
catch (Exception e) {
await botClient.SendTextMessageAsync(message.Chat.Id, $"""
Error processing message.
Message content: `{message.Text}`
Parsed command: `{command}`
Parsed query: `{query}`