Fix to show back button when message opened by notification

Before this fix, it was not possible to go to conversation list when a message was opened by notification

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2023-02-10 17:18:57 +01:00
parent 4747b9935f
commit 28fcd585c7
No known key found for this signature in database
GPG key ID: C793F8B59F43CE7B

View file

@ -139,7 +139,7 @@ abstract class BaseController(@LayoutRes var layoutRes: Int, args: Bundle? = nul
showSearchOrToolbar()
setTitle()
if (actionBar != null) {
actionBar!!.setDisplayHomeAsUpEnabled(parentController != null || router.backstackSize > 1)
actionBar!!.setDisplayHomeAsUpEnabled(parentController != null || router.backstackSize >= 1)
}
super.onAttach(view)
}