Ignore call to visibility if there's no view.

This commit is contained in:
Alex Hart
2025-10-23 14:56:51 -03:00
committed by jeffrey-signal
parent 74f9f39656
commit c268625f52

View File

@@ -2248,6 +2248,10 @@ class ConversationFragment :
}
private fun setBottomActionBarVisibility(isVisible: Boolean) {
if (view == null) {
return
}
val isCurrentlyVisible = bottomActionBar.isVisible
if (isVisible == isCurrentlyVisible) {
return