Yago

Results 37 comments of Yago

Would be great if Telegram support text colours. Other way is by image or uploading to any code paste service

I assume he is speaking about this implementation. There is an anti-flood implemented: https://github.com/yagop/telegram-bot/blob/master/plugins/stats.lua#L103 The message is ignored if the user messages > NUM_MSG_MAX in TIME_CHECK (s)

Maybe a rate limit in Telegram servers. Did you try to send them asyncronously. Something like: ``` for (const image of data.images) { ... await bot.sendMediaGroup(chatId, el, sendMediaGroupOptions); } ```

It's nice but this shuld probably be implemented by the main app, not this library

Have you seen [google](https://github.com/yagop/telegram-bot/blob/master/plugins/google.lua) plugin?