Let invokeOnCurrentTimeline lambda param return Unit so that we can remove run block.

This commit is contained in:
Benoit Marty 2024-10-04 12:24:50 +02:00 committed by Benoit Marty
parent a3e2457834
commit fafd5d4871
2 changed files with 6 additions and 8 deletions

View file

@ -592,13 +592,11 @@ class MessageComposerPresenter @Inject constructor(
)
timelineController.invokeOnCurrentTimeline {
val replyToDetails = loadReplyDetails(draftType.eventId).map(permalinkParser)
run {
messageComposerContext.composerMode = MessageComposerMode.Reply(
replyToDetails = replyToDetails,
// I guess it's fine to always render the image when restoring a draft
hideImage = false
)
}
messageComposerContext.composerMode = MessageComposerMode.Reply(
replyToDetails = replyToDetails,
// I guess it's fine to always render the image when restoring a draft
hideImage = false
)
}
}
}

View file

@ -57,7 +57,7 @@ class TimelineController @Inject constructor(
return detachedTimeline.map { !it.isPresent }
}
suspend fun invokeOnCurrentTimeline(block: suspend (Timeline.() -> Any)) {
suspend fun invokeOnCurrentTimeline(block: suspend (Timeline.() -> Unit)) {
currentTimelineFlow.value.run {
block(this)
}