mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-25 20:23:19 +00:00
Fix backing out of group story text send.
This commit is contained in:
@@ -157,7 +157,9 @@ class TextStoryPostCreationFragment : Fragment(R.layout.stories_text_post_creati
|
||||
MaterialAlertDialogBuilder(requireContext())
|
||||
.setMessage(getString(R.string.MediaReviewFragment__add_to_the_group_story, sharedViewModel.state.value!!.recipient!!.getDisplayName(requireContext())))
|
||||
.setPositiveButton(R.string.MediaReviewFragment__add_to_story) { _, _ -> performSend(contacts) }
|
||||
.setNegativeButton(android.R.string.cancel) { _, _ -> }
|
||||
.setNegativeButton(android.R.string.cancel) { _, _ ->
|
||||
binding.sendInProgressIndicator.visible = false
|
||||
}
|
||||
.show()
|
||||
} else {
|
||||
performSend(contacts)
|
||||
|
||||
Reference in New Issue
Block a user