We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f576437 commit 8baeba3Copy full SHA for 8baeba3
1 file changed
vector/src/main/java/im/vector/app/features/home/room/detail/composer/MessageComposerViewModel.kt
@@ -625,14 +625,14 @@ class MessageComposerViewModel @AssistedInject constructor(
625
state.rootThreadEventId?.let {
626
room.relationService().replyInThread(
627
rootThreadEventId = it,
628
- replyInThreadText = action.text.toString(),
+ replyInThreadText = action.text,
629
autoMarkdown = action.autoMarkdown,
630
formattedText = action.formattedText,
631
eventReplied = timelineEvent
632
)
633
} ?: room.relationService().replyToMessage(
634
eventReplied = timelineEvent,
635
- replyText = action.text.toString(),
+ replyText = action.text,
636
replyFormattedText = action.formattedText,
637
638
showInThread = showInThread,
0 commit comments