-
-
Notifications
You must be signed in to change notification settings - Fork 80
Description
Some client API (application service) methods do not seem to have a way of doing timestamp massaging from within Mautrix methods.
Some methods like send_text
, react
and send_image
do accept an undocumented timestamp
parameter, but other methods like ensure_joined
, invite_user
, join_room
, pin_message
, etc do not have this.
This would be useful to write an application service that lets you import messages from another platform to Matrix, including room join and message pin events (instead of inviting and joining all ghost users prior to bridging messages).
Update: I see that only the methods to send message events and state events in the Matrix API itself let you change the timestamp, so for a join I'd need to manually send a state event. I can probably do that if it's more of a Matrix limitation then.
It would be nice for other methods that ultimately result in a state event (even if only in the homeserver backend) to accept the timestamp
parameter as well, and manually send state events if it is specified. But first, timestamp
needs to be supported in send_state_event
.