-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug in multi client and not work with uvloop #42
Comments
I also tried to put |
I utilize a client and a bot client. The 'app' client is a part of a private group and it listens for text containing 🚨🚨 or a photo with the caption 🚨🚨. Afterwards, I utilize the 'app_bot' to transmit the message to my channel. It is essential for both of them to function properly, hence I employ 'await idle()' in order to avoid any blocking.
I want to receive the callback of the message with a button, so I use
@app_bot.on_callback_query()
. If the user selectsManual Input
, I need to obtain the user's input. For this, I usecoin = await chat.ask('Please input the coin: ')
. However, I am encountering an error message:Here is my code
The text was updated successfully, but these errors were encountered: