im trying to froward message with forwardMessage and it works fine, but when someone reply to message its only forward reply, not original message. Am I missing something? Is there some way to forward original message too?
`def forwardMessage(message):
method = "forwardMessage"
url = f"https://api.telegram.org/bot{token}/{method}"
for chat in chat_ids:
if chat != str(message["message"]["chat"]["id"]):
data = {"from_chat_id":message["message"]"chat"]"id"],"message_id": message["message"]["message_id"],"chat_id": chat}
respons = requests.post(url, data=data)`
I need to forward message with original message.