-
-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encrypted messages edited in Matrix are prefixed with an Asterisk in Telegram #623
Comments
Seems to work fine for me, is the bridge up to date? |
I only recently set the bridge up, |
Config attached: config.yaml |
What matrix client are you using? |
Element on Android. Original message (decrypted): {
"type": "m.room.message",
"content": {
"msgtype": "m.text",
"body": "Test",
},
"room_id": "REDACTED"
} Edit event (also decrypted) {
"type": "m.room.message",
"content": {
"msgtype": "m.text",
"body": "* This is a Test",
"m.relates_to": {
"rel_type": "m.replace",
"event_id": "REDACTED",
},
"m.new_content": {
"msgtype": "m.text",
"body": "This is a Test"
}
},
"room_id": "REDACTED"
} As you can see, the |
Telegram already marks edited messages as edited. However, if a message in a bridged channel is edited on the Matrix side, for some reason the edited message on the Telegram side now starts with the string
*
, in addition to theedited
marker (see screenshot below).Expected Behavior
Actual Behavior
(Disregard the timestamp difference)
Steps to Reproduce
*
prepended to the messageThe text was updated successfully, but these errors were encountered: