Open R1senDev opened 8 months ago
pip3 install -U git+https://github.com/Mayuri-Chan/pyrofork
Nothing happens when sending a message to the bot in the example below.
from pyrogram.filters import text from pyrogram.client import Client from tomllib import load with open('auth.toml', 'rb') as file: auth_data = load(file) app = Client( name = auth_data['api']['name'], api_id = auth_data['api']['id'], api_hash = auth_data['api']['hash'], bot_token = auth_data['api']['token'] ) @app.on_message() async def on_text(_, msg): print(msg.text) await app.send_message( chat_id = msg.chat.id, text = 'Ping!' ) print('Starting..') app.run()
Starting..
Checklist
pip3 install -U git+https://github.com/Mayuri-Chan/pyrofork
and reproduced the issue using the latest development versionDescription
Nothing happens when sending a message to the bot in the example below.
Steps to reproduce
Code example
Logs