GyverLibs / FastBot

Многофункциональная быстрая библиотека для Телеграм бота на esp8266/esp32
MIT License
185 stars 31 forks source link

I can't delete the files sent by BOTs #35

Open x1pepe opened 1 year ago

x1pepe commented 1 year ago

I can't delete the files sent by BOTs. Part of the code ...

// DELETE FILE if (msg.isFile) { // If msg its a file ... bot.sendMessage("The file will be delete in 2 seg.");
delay (2000); bot.deleteMessage(msg.ID, msg.chatID); bot.deleteMessage(bot.lastBotMsg());

... Thaks.