megagosha
megagosha
If I understand this correctly GenericMessageCommand is not executed on commands, only on messages. So if you send something like /someConv GenericCommand will be executed only if SomeConvCommand not found...
When should I use this method? If I put it inside a command, it will only be executed after another conversation (different command) has already been cancelled.
If I am reading this correctly, calling conversation constructor cancels other last active conversation https://github.com/php-telegram-bot/core/blob/57a649cfcfe35883165c19942b460ea6b2dfd606/src/Conversation.php#L119C8-L123C1 Consider this use case: 1. /conv1 is active now. 2. user sends /conv2 3. If...