morgan pushed to branch tor-browser-128.13.0esr-14.5-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
a7a52bcf
by clairehurst at 2025-08-05T14:47:25+00:00
- 
295c151d
by Dan Ballard at 2025-08-05T14:47:31+00:00
2 changed files:
- mobile/android/android-components/components/feature/privatemode/src/main/java/mozilla/components/feature/privatemode/notification/PrivateNotificationFeature.kt
- mobile/android/fenix/app/src/main/java/org/mozilla/fenix/HomeActivity.kt
Changes:
| ... | ... | @@ -44,7 +44,6 @@ class PrivateNotificationFeature<T : AbstractPrivateNotificationService>( | 
| 44 | 44 |      }
 | 
| 45 | 45 | |
| 46 | 46 |      override fun stop() {
 | 
| 47 | -        applicationContext.stopService(Intent(applicationContext, notificationServiceClass.java))
 | |
| 48 | 47 |          scope?.cancel()
 | 
| 49 | 48 |      }
 | 
| 50 | 49 |  } | 
| ... | ... | @@ -635,6 +635,10 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity, TorAn | 
| 635 | 635 |      override fun onDestroy() {
 | 
| 636 | 636 |          super.onDestroy()
 | 
| 637 | 637 | |
| 638 | +        if (isFinishing) {
 | |
| 639 | +            exitProcess(0)
 | |
| 640 | +        }
 | |
| 641 | + | |
| 638 | 642 |          // Diagnostic breadcrumb for "Display already aquired" crash:
 | 
| 639 | 643 |          // https://github.com/mozilla-mobile/android-components/issues/7960
 | 
| 640 | 644 |          breadcrumb(
 |