I use a user bot in pyrogram to save links from a bot to a personal channel. I use this code:
def forwardlik(mensaje)
if "Link!" in mensaje.text:
mensaje.forward(ids["channel"])
But now the bot it's sending the link with a button inline and I don't know how to make the program press the button and send only the link to my channel. Someone can help me?