Fix conversation not closing after delete bug.

This commit is contained in:
Cody Henthorne 2024-06-24 13:19:15 -04:00 committed by Greyson Parrelli
parent 34a4bda331
commit 976f80ff7e

View file

@ -2231,6 +2231,7 @@ class ConversationFragment :
ConversationDialogs.displayDeleteDialog(requireContext(), recipient) {
messageRequestViewModel
.onDelete()
.doAfterSuccess { activity?.finish() }
.subscribeWithShowProgress("delete message request")
}
}