File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ jsoup = "org.jsoup:jsoup:1.17.2"
161161appyx_core = { module = " com.bumble.appyx:core" , version.ref = " appyx" }
162162molecule-runtime = " app.cash.molecule:molecule-runtime:2.0.0"
163163timber = " com.jakewharton.timber:timber:5.0.1"
164- matrix_sdk = " org.matrix.rustcomponents:sdk-android:0.2.28 "
164+ matrix_sdk = " org.matrix.rustcomponents:sdk-android:0.2.29 "
165165matrix_richtexteditor = { module = " io.element.android:wysiwyg" , version.ref = " wysiwyg" }
166166matrix_richtexteditor_compose = { module = " io.element.android:wysiwyg-compose" , version.ref = " wysiwyg" }
167167sqldelight-driver-android = { module = " app.cash.sqldelight:android-driver" , version.ref = " sqldelight" }
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ package io.element.android.libraries.matrix.impl.room.draft
1919import io.element.android.libraries.matrix.api.core.EventId
2020import io.element.android.libraries.matrix.api.room.draft.ComposerDraft
2121import io.element.android.libraries.matrix.api.room.draft.ComposerDraftType
22- import uniffi.matrix_sdk_base .ComposerDraft as RustComposerDraft
23- import uniffi.matrix_sdk_base .ComposerDraftType as RustComposerDraftType
22+ import org.matrix.rustcomponents.sdk .ComposerDraft as RustComposerDraft
23+ import org.matrix.rustcomponents.sdk .ComposerDraftType as RustComposerDraftType
2424
2525internal fun ComposerDraft.into (): RustComposerDraft {
2626 return RustComposerDraft (
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ class RustTimeline(
327327 runCatching<Unit > {
328328 when {
329329 originalEventId != null -> {
330- inner.edit (
330+ inner.editByEventId (
331331 newContent = messageEventContentFromParts(body, htmlBody).withMentions(mentions.map()),
332332 eventId = originalEventId.value,
333333 )
You can’t perform that action at this time.
0 commit comments