Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,8 @@ extension SecureVaultManager: AutofillSecureVaultDelegate {
autosaveAccountCreatedInSession = false
}
}

try storeOrUpdateAutogeneratedCredentials(domain: domain, autofillData: autofilldata)

// Update/Prompt in 3rd party password manager
// Update/Prompt in 3rd party password manager (if enabled)
if let passwordManager = passwordManager, passwordManager.isEnabled {
if !shouldSilentlySave {
let dataToPrompt = try existingEntries(for: domain, autofillData: autofilldata)
Expand All @@ -264,6 +262,9 @@ extension SecureVaultManager: AutofillSecureVaultDelegate {
autosaveAccountCreatedInSession = false
}
return
} else {
// Store or update silently (if required)
try storeOrUpdateAutogeneratedCredentials(domain: domain, autofillData: autofilldata)
}

// Prompt or notify on form submissions and clean any partial accounts for this instance (tab)
Expand Down