[PR #2723] [MERGED] [PM-3606] TDE user with 2FA isn't able to autofill on iOS #45373

Closed
opened 2026-04-26 12:39:48 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/2723
Author: @andrebispo5
Created: 8/25/2023
Status: Merged
Merged: 9/9/2023
Merged by: @trmartin4

Base: masterHead: auth/pm-3606/ext-2fa-nav


📝 Commits (10+)

  • a7aec60 [PM-3606] Fix 2FA for autofill
  • 759ce6d [PM-3606] Fix autofill when user doesn't have a login method available.
  • c38f677 Merge branch 'master' into auth/pm-3606/ext-2fa-nav
  • 6638ebc [PM-3606] PR fixes
  • c9613e1 [PM-3606] Add logout logic to other extension projects
  • 8498ebe Merge branch 'master' into auth/pm-3606/ext-2fa-nav
  • c42a117 Merge branch 'master' into auth/pm-3606/ext-2fa-nav
  • e9cd348 [PM-3606] Move code to base class.
  • 38f2e72 Transform into property instead of field
  • 99037b3 Remove double ";"

📊 Changes

7 files changed (+23 additions, -514 deletions)

View changed files

📝 src/iOS.Autofill/CredentialProviderViewController.cs (+1 -0)
📝 src/iOS.Core/Controllers/BaseLockPasswordViewController.cs (+11 -0)
src/iOS.Core/Controllers/LockPasswordViewController.cs (+0 -512)
📝 src/iOS.Core/iOS.Core.csproj (+0 -1)
📝 src/iOS.Extension/LoadingViewController.cs (+1 -0)
📝 src/iOS.Extension/LockPasswordViewController.cs (+9 -1)
📝 src/iOS.ShareExtension/LoadingViewController.cs (+1 -0)

📄 Description

Type of change

  • Bug fix
  • New feature development
  • Tech debt (refactoring, code cleanup, dependency upgrades, etc)
  • Build/deploy pipeline (DevOps)
  • Other

Objective

Fix autofill for users with TDE and no MP and 2FA enabled.

Code changes

Logout user and send them to HomePage when they don't have MP nor Biometrics or PIN.

Screenshots

Before you submit

  • Please check for formatting errors (dotnet format --verify-no-changes) (required)
  • Please add unit tests where it makes sense to do so (encouraged but not required)
  • If this change requires a documentation update - notify the documentation team
  • If this change has particular deployment requirements - notify the DevOps team

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/2723 **Author:** [@andrebispo5](https://github.com/andrebispo5) **Created:** 8/25/2023 **Status:** ✅ Merged **Merged:** 9/9/2023 **Merged by:** [@trmartin4](https://github.com/trmartin4) **Base:** `master` ← **Head:** `auth/pm-3606/ext-2fa-nav` --- ### 📝 Commits (10+) - [`a7aec60`](https://github.com/bitwarden/android/commit/a7aec600ca5416ca67542679fdccf331a433a27e) [PM-3606] Fix 2FA for autofill - [`759ce6d`](https://github.com/bitwarden/android/commit/759ce6d7935fdbaa0ebea7ba4478f2ce37eda3f6) [PM-3606] Fix autofill when user doesn't have a login method available. - [`c38f677`](https://github.com/bitwarden/android/commit/c38f67784c25a7271c9c9a97f825742a887080f5) Merge branch 'master' into auth/pm-3606/ext-2fa-nav - [`6638ebc`](https://github.com/bitwarden/android/commit/6638ebc9389c5f38ec53ba820578f88ce835aac7) [PM-3606] PR fixes - [`c9613e1`](https://github.com/bitwarden/android/commit/c9613e184ccbe30cfb7f58e98b7b1e92b8f0ba67) [PM-3606] Add logout logic to other extension projects - [`8498ebe`](https://github.com/bitwarden/android/commit/8498ebe94b4723607f70fc3b70f65aaf3a61e6d6) Merge branch 'master' into auth/pm-3606/ext-2fa-nav - [`c42a117`](https://github.com/bitwarden/android/commit/c42a1179b627efae7538ab7e1ee244244e47e747) Merge branch 'master' into auth/pm-3606/ext-2fa-nav - [`e9cd348`](https://github.com/bitwarden/android/commit/e9cd34854ae10c4ef2443574fc4906986ffb6226) [PM-3606] Move code to base class. - [`38f2e72`](https://github.com/bitwarden/android/commit/38f2e72b889c1e1cb5e5a9026c7f3c7bc04e67f5) Transform into property instead of field - [`99037b3`](https://github.com/bitwarden/android/commit/99037b348a2b5fdc7b41c2eeb216329e7209a500) Remove double ";" ### 📊 Changes **7 files changed** (+23 additions, -514 deletions) <details> <summary>View changed files</summary> 📝 `src/iOS.Autofill/CredentialProviderViewController.cs` (+1 -0) 📝 `src/iOS.Core/Controllers/BaseLockPasswordViewController.cs` (+11 -0) ➖ `src/iOS.Core/Controllers/LockPasswordViewController.cs` (+0 -512) 📝 `src/iOS.Core/iOS.Core.csproj` (+0 -1) 📝 `src/iOS.Extension/LoadingViewController.cs` (+1 -0) 📝 `src/iOS.Extension/LockPasswordViewController.cs` (+9 -1) 📝 `src/iOS.ShareExtension/LoadingViewController.cs` (+1 -0) </details> ### 📄 Description ## Type of change - [X] Bug fix - [ ] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [ ] Build/deploy pipeline (DevOps) - [ ] Other ## Objective <!--Describe what the purpose of this PR is. For example: what bug you're fixing or what new feature you're adding--> Fix autofill for users with TDE and no MP and 2FA enabled. ## Code changes <!--Explain the changes you've made to each file or major component. This should help the reviewer understand your changes--> <!--Also refer to any related changes or PRs in other repositories--> Logout user and send them to HomePage when they don't have MP nor Biometrics or PIN. ## Screenshots <!--Required for any UI changes. Delete if not applicable--> ## Before you submit - Please check for formatting errors (`dotnet format --verify-no-changes`) (required) - Please add **unit tests** where it makes sense to do so (encouraged but not required) - If this change requires a **documentation update** - notify the documentation team - If this change has particular **deployment requirements** - notify the DevOps team --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-26 12:39:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#45373