Skip to content

Commit

Permalink
Temporary mod setting autofill on by default for ship review
Browse files Browse the repository at this point in the history
  • Loading branch information
amddg44 committed Sep 21, 2023
1 parent 2c9c4b0 commit 1ed2235
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DuckDuckGo/AppUserDefaults.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ public class AppUserDefaults: AppSettings {
// In future, we'll use setAutofillCredentialsEnabledAutomaticallyIfNecessary() here to automatically turn on autofill for people
// That haven't seen the save prompt before.
// For now, whilst internal testing is still happening, it's still set to default to be enabled
return userDefaults?.object(forKey: Keys.autofillCredentialsEnabled) as? Bool ?? false
#warning("This is temporarily defaulted to true for ship review - undo before merging!")
return userDefaults?.object(forKey: Keys.autofillCredentialsEnabled) as? Bool ?? true
}

set {
Expand Down

0 comments on commit 1ed2235

Please sign in to comment.