Firefox · Core
CVE-2025-11718
Logic Error in Core
Overview
Medium
Severity
—
CVSS
No
Exploited ITW
Fixed
Fix Status
Files Changed
mobile/android/fenix/app/src/main/java/org/mozilla/fenix/browser/BaseBrowserFragment.kt
Patch
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/browser/BaseBrowserFragment.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/browser/BaseBrowserFragment.kt
index 3cadbeb1e02..0f8cbab754a 100644
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/browser/BaseBrowserFragment.kt
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/browser/BaseBrowserFragment.kt
@@ -54,6 +54,7 @@ import mozilla.appservices.places.BookmarkRoot
import mozilla.appservices.places.uniffi.PlacesApiException
import mozilla.components.browser.engine.gecko.preferences.BrowserPrefObserverIntegration
import mozilla.components.browser.menu.view.MenuButton
+import mozilla.components.browser.state.action.ContentAction
import mozilla.components.browser.state.selector.findCustomTab
import mozilla.components.browser.state.selector.findCustomTabOrSelectedTab
import mozilla.components.browser.state.selector.findTab
@@ -1855,6 +1856,15 @@ abstract class BaseBrowserFragment :
true
BiometricAuthenticationManager.biometricAuthenticationNeededInfo.authenticationStatus =
AuthenticationStatus.NOT_AUTHENTICATED
+
+ getSafeCurrentTab()?.id?.let {
+ requireComponents.core.store.dispatch(
+ ContentAction.UpdateExpandedToolbarStateAction(
+ sessionId = it,
+ expanded = true,
+ ),
+ )
+ }
}
private fun evaluateMessagesForMicrosurvey(components: Components) =
Loading diff…
References
On This Page