@Quvi

Как пожаловаться на чат / пользователя через pyrogram?

есть код:
@client.on_message(filters.command("report", prefixes='.') & filters.me)
def report(client, msg):
    try:
        command, reason = msg.text.split(maxsplit=1)
    except:
        reason = 'This chat violates the rules.'

    msg.edit('<b>Wait..</b>')

    try:
        client.send(functions.messages.ReportChat(chat_id=msg.chat.id, reason=reason))
        msg.edit('<i><b>Success!</b></i>')
    except Exception as e:
        msg.edit(f'<b>Error!</b> <i>{e}</i>')

При попытке отправить жалобу, выскакивает ошибка 'Client' object has no attribute 'send'
Почему-то нигде не нашел решения..
Спасибо!
  • Вопрос задан
  • 130 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы