Add check for backstack size before pushing DownloadController (#5312)
(cherry picked from commit 64f95af3e5)
This commit is contained in:
@@ -198,7 +198,9 @@ class MainActivity : BaseViewBindingActivity<MainActivityBinding>() {
|
||||
controller?.showSettingsSheet()
|
||||
}
|
||||
R.id.nav_updates -> {
|
||||
router.pushController(DownloadController().withFadeTransaction())
|
||||
if (router.backstackSize == 1) {
|
||||
router.pushController(DownloadController().withFadeTransaction())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user