Closed Swiftocrat closed 3 years ago
Hello, I fixed example. Bot works normal, just on press button the update object does not have message
try update.message?.reply(text: update.callbackQuery?.data ?? "data not exist", bot: bot)
replace to
try update.callbackQuery?.message?.reply(text: update.callbackQuery?.data ?? "data not exist", bot: bot)
Thank you, I will try
Working
Thank you, I will try
Thanks you, too
When I trying to use buttons callback as it showed in example, I'm facing problem when bot can't reply to user. It seems because bot somehow forgets chat id. Example does not work too, actually.