Format code

This commit is contained in:
ariskotsomitopoulos 2022-03-16 14:49:40 +01:00
parent eee1ec1423
commit bcf3f1e302
2 changed files with 4 additions and 2 deletions

View File

@ -25,4 +25,5 @@ fun MessageComposerViewState.toAnalyticsComposer(): Composer =
inThread = isInThreadTimeline(), inThread = isInThreadTimeline(),
isEditing = sendMode is SendMode.Edit, isEditing = sendMode is SendMode.Edit,
isReply = sendMode is SendMode.Reply, isReply = sendMode is SendMode.Reply,
startsThread = startsThread) startsThread = startsThread
)

View File

@ -21,4 +21,5 @@ import im.vector.app.features.analytics.plan.Interaction
fun Interaction.Name.toAnalyticsInteraction(interactionType: Interaction.InteractionType = Interaction.InteractionType.Touch) = fun Interaction.Name.toAnalyticsInteraction(interactionType: Interaction.InteractionType = Interaction.InteractionType.Touch) =
Interaction( Interaction(
name = this, name = this,
interactionType = interactionType) interactionType = interactionType
)