Skip to content

Commit

Permalink
Disable password generation for burner windows (#3024)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/1203822806345703/1207877600791247/f
Tech Design URL:
CC:

Description:
Disables password generation in fire windows, avoiding confusion since generated credentials are not currently autosaved in fire windows
  • Loading branch information
amddg44 authored Jul 31, 2024
1 parent 116efba commit 54eb2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DuckDuckGo/Tab/TabExtensions/AutofillTabExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ extension AutofillTabExtension: SecureVaultManagerDelegate {
var supportedFeatures = ContentScopeFeatureToggles.supportedFeaturesOnMacOS(privacyConfigurationManager.privacyConfig)

if !passwordManagerCoordinator.isEnabled,
AutofillNeverPromptWebsitesManager.shared.hasNeverPromptWebsitesFor(domain: domain) {
AutofillNeverPromptWebsitesManager.shared.hasNeverPromptWebsitesFor(domain: domain) || isBurner {
supportedFeatures.passwordGeneration = false
}

Expand Down

0 comments on commit 54eb2ff

Please sign in to comment.