Fetch edited event in advanced (similar to reply mode).

This commit is contained in:
Benoit Marty 2023-10-04 17:38:17 +02:00
parent 937391b4b9
commit 937e053d46
4 changed files with 20 additions and 13 deletions

View file

@ -89,7 +89,7 @@ interface MatrixRoom : Closeable {
suspend fun editMessage(originalEventId: EventId?, transactionId: TransactionId?, body: String, htmlBody: String?): Result<Unit>
suspend fun enterReplyMode(eventId: EventId): Result<Unit>
suspend fun enterSpecialMode(eventId: EventId?): Result<Unit>
suspend fun replyMessage(eventId: EventId, body: String, htmlBody: String?): Result<Unit>