mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
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:
parent
4747b9935f
commit
28fcd585c7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue