Replymessage unavailable
// Command: * (/setshortdescription)
if (update.message && update.message.text === "/setshortdescription") {
await Api.setMyShortDescription({
short_description: "A helpful bot that does amazing things! 🤖",
language_code: "en" // Optional: set for specific language
})
await Api.sendMessage({
chat_id: update.message.chat.id,
text: "✅ Bot short description updated successfully!",
parse_mode: "HTML"
})
}
Use in * or make separate handler