No need to use `also` here.

This commit is contained in:
Benoit Marty 2023-12-21 09:29:31 +01:00
parent 7e40b933c0
commit 7242ad48c2
1 changed files with 3 additions and 4 deletions

View File

@ -150,7 +150,7 @@ class MessageComposerViewModel @AssistedInject constructor(
}
private fun handleOnTextChanged(action: MessageComposerAction.OnTextChanged) {
val needsSendButtonVisibilityUpdate = currentComposerText.isBlank() != action.text.isBlank()
val needsSendButtonVisibilityUpdate = currentComposerText.isBlank() != action.text.isBlank()
currentComposerText = SpannableString(action.text)
if (needsSendButtonVisibilityUpdate) {
updateIsSendButtonVisibility(true)
@ -239,9 +239,8 @@ class MessageComposerViewModel @AssistedInject constructor(
private fun handleSendMessage(room: Room, action: MessageComposerAction.SendMessage) {
withState { state ->
analyticsTracker.capture(state.toAnalyticsComposer()).also {
setState { copy(startsThread = false) }
}
analyticsTracker.capture(state.toAnalyticsComposer())
setState { copy(startsThread = false) }
when (state.sendMode) {
is SendMode.Regular -> {
when (val parsedCommand = commandParser.parseSlashCommand(