Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
(cherry picked from commit a32a2d3)
  • Loading branch information
crackededed committed Aug 22, 2024
1 parent d32ed85 commit 8ebdf05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
minSdk = 16
targetSdk = 34
versionCode = 121
versionName = "2.33.4"
versionName = "2.33.5"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class ChatFragment : BaseNetworkFragment(), LifecycleListener, MessageClickedDia
}
viewLifecycleOwner.lifecycleScope.launch {
repeatOnLifecycle(Lifecycle.State.STARTED) {
viewModel.newMessage.collectLatest {
viewModel.newMessage.collect {
if (it) {
chatView.notifyMessageAdded()
viewModel.newMessage.value = false
Expand Down

0 comments on commit 8ebdf05

Please sign in to comment.