From c9fd77e77b0015a1f1de8ae8ed5b9e1c442060d4 Mon Sep 17 00:00:00 2001 From: Andrei Yankovich Date: Mon, 20 Nov 2023 00:40:52 +0300 Subject: [PATCH] Update README.md Signed-off-by: Andrei Yankovich --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3e1147..f6841ae 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is Qt library for working with chat bots. At this time This library supports next platforms: -* Telegram (50%) - implemented only processing and sending messages and download files. +* Telegram Rest (80%) - implemented only processing and sending messages and download files. ## Build and Include * cd yourRepo @@ -54,7 +54,7 @@ int main(int argc, char *argv[]) { if (tmsg->contains(tmsg->Audio)) { bot.getFile(tmsg->audio()->fileId(), qTbot::iFile::Local); } - bot.sendSpecificMessage(tmsg->chatId(), "I see it - я вижу это", tmsg->messageId()); + bot.sendSpecificMessage({tmsg->chatId(), "I see it"}, tmsg->messageId()); } }