LasterAlex
LasterAlex
There is no `0.13.1` version Also, yes, i was able to recreate it with `0.13.0`, but recently released `0.14.1` is fine, the code that triggers the issue in `0.13.0` doesn't...
Oh, damn Ok, I'll try to make a pr today
I agree actually, a lot of callback implementations that are 'the rust way' are quite a lot for users to do Maybe something along the lines of `BotCommands` could be...
Yes, absolutely! Will be glad to give it a shot in the near future! I, myself, would really want `reply_to` and `delete` to be implemented by the next release
> Forwarding the messages from respective groups is more intuitive. Oh, there's a little problem with this, we can't return `Self::ForwardMessages` if we do that, and this is a whole...
Well, it's not impossible, but it would remove all setter traits Maybe not detrimental, but, in my opinion, it's better to disallow multiple messages from different groups than deny the...
Ok, makes sense
Also, @Hirrolot, while checking the examples i found that `bot.edit_message_text` and others like it could benefit from more simple syntax, e.g. ```rust bot.edit_message_text(msg.chat.id, msg.id, text).await?; // To bot.edit_text(msg, text).await?; ```...
@syrtcevvi Wait a bit, don't merge, waiting for response from Hirrolot at #1143
Maybe it is also better to accept `&Message` instead of just `Message` to not make the user clone if they reuse the message?