-
-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Telegram messaging doesn't answer to the correct conversation #607
Comments
I'll add precisions to this rather quicky typed issue: From node-telegram-bot-api Readme:
From Gladys message reception code:
chat by telegram shouldn't be linked to telegram user id (msg.from.id) but telegram chat id (msg.chat.id). Gladys should listen and answer to anyone who talks to her in the correct group chat. Setup of Telegram Service needs refinement.
|
Agree with this! For now, Telegram integration only work in 1-1, groups are not supported. |
* Fix GladysAssistant#730 : Send a message when Telegram integration was configured with success * Fix GladysAssistant#607 : In Telegram service, use the chat.id to answer to a user, not the from.id * .gitignore .DS_Store * Fix telegram tests
* Fix GladysAssistant#730 : Send a message when Telegram integration was configured with success * Fix GladysAssistant#607 : In Telegram service, use the chat.id to answer to a user, not the from.id * .gitignore .DS_Store * Fix telegram tests
When sending messages across different conversations having the Gladys telegram bot, the bot answers in a private message instead of answering in the conversation. this is due to the message group context id not being saved in the message context.
The text was updated successfully, but these errors were encountered: