How can I implement a check for a user? That is, if the message was sent from this user, then: let's send the reaction "❤️" on his message [pyrogram]
I tried to:
@app.on_message(filters.user.id="...")
def reaction(client,message):
app.send_reaction(message.chat.id, message.id, "❤️")
But not working