Compare commits

...

3 Commits

@ -1 +1 @@
Subproject commit 9533afa3011b01ed11537a28a9abcc438539b902
Subproject commit d401a648540fcd1832ebfcb9ec7c8c6e17ed0df2

@ -833,9 +833,13 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity {
}
final override fun onUserLeaveHint() {
supportFragmentManager.primaryNavigationFragment?.childFragmentManager?.fragments?.forEach {
if (it is UserInteractionHandler && it.onHomePressed()) {
return
// The notification permission prompt will trigger onUserLeaveHint too.
// We shouldn't treat this situation as user leaving.
if (!components.notificationsDelegate.isRequestingPermission) {
supportFragmentManager.primaryNavigationFragment?.childFragmentManager?.fragments?.forEach {
if (it is UserInteractionHandler && it.onHomePressed()) {
return
}
}
}

@ -1 +1 @@
125.2.0
125.3.0

Loading…
Cancel
Save