How to make edits sync across source and destination chats ? #179
-
I'm forwarding a channel that has a bot running that edit a pinned message every minute. live=LiveSettings(delete_sync=False, delete_on_edit=None) past=PastSettings(delay=0) admins=[] plugins={} |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The original message must be written when the bot is running. Now when the original message is edited in source chat, the bot will edit it on the destination chat also. Run the bot. Write a message in source chat. It will get forwarded to the destination chat. Now edit it. It will get edited in destination chat. |
Beta Was this translation helpful? Give feedback.
-
I'm not a admin of the source chat and they don't want to restart the bot. |
Beta Was this translation helpful? Give feedback.
-
If a message is edited in source chat, and the corresponding message does not exist in the destination, a new message is sent automatically.
No. Past and live modes are completely separate. Using past mode you can forward the message. But on editing it, edit sync will not happen, as it was not forwarded by live mode. I cant understand your scenario, or what you are trying to do. Please read the wiki pages for a better understanding of what tgcf does. |
Beta Was this translation helpful? Give feedback.
The original message must be written when the bot is running. Now when the original message is edited in source chat, the bot will edit it on the destination chat also.
Run the bot. Write a message in source chat. It will get forwarded to the destination chat. Now edit it. It will get edited in destination chat.