tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 42c84755a1566d0d2a08c0ae287d723550c67b85
parent 279bb5bfbc6cc95e9ad6aa20a1c6b07714dbcc44
Author: Florian Meyer <teaschuldorf@gmail.com>
Date:   Mon, 10 Nov 2025 15:04:58 +0000

Bug 1896192 - Directly open logins list. r=android-reviewers,pollymce

Differential Revision: https://phabricator.services.mozilla.com/D270485

Diffstat:
Mmobile/android/fenix/app/src/main/java/org/mozilla/fenix/home/intent/OpenPasswordManagerIntentProcessor.kt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/home/intent/OpenPasswordManagerIntentProcessor.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/home/intent/OpenPasswordManagerIntentProcessor.kt @@ -12,7 +12,7 @@ import org.mozilla.fenix.ext.nav import org.mozilla.fenix.utils.Settings /** - * When the open password manager shortcut is tapped, Fenix should open to the password and login fragment. + * When the open password manager shortcut is tapped, Fenix should open to the logins list fragment. */ class OpenPasswordManagerIntentProcessor : HomeIntentProcessor { @@ -20,7 +20,7 @@ class OpenPasswordManagerIntentProcessor : HomeIntentProcessor { return if (intent.extras?.getBoolean(HomeActivity.OPEN_PASSWORD_MANAGER) == true) { out.removeExtra(HomeActivity.OPEN_PASSWORD_MANAGER) - val directions = NavGraphDirections.actionGlobalSavedLoginsAuthFragment() + val directions = NavGraphDirections.actionLoginsListFragment() navController.nav(null, directions) true } else {