diff --git a/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/RustTimeline.kt b/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/RustTimeline.kt index 198f231ccb..3ec21e7560 100644 --- a/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/RustTimeline.kt +++ b/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/RustTimeline.kt @@ -517,7 +517,7 @@ class RustTimeline( private fun fetchDetailsForEvent(eventId: EventId): Result { return runCatching { - inner.getEventTimelineItemByEventId(eventId.value) + inner.fetchDetailsForEvent(eventId.value) } } }