From 1ed2235ece989f196d53023764a356f4bab0130e Mon Sep 17 00:00:00 2001 From: amddg44 Date: Thu, 21 Sep 2023 09:36:26 +0200 Subject: [PATCH] Temporary mod setting autofill on by default for ship review --- DuckDuckGo/AppUserDefaults.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DuckDuckGo/AppUserDefaults.swift b/DuckDuckGo/AppUserDefaults.swift index cdc13cbb36..815acdb7b0 100644 --- a/DuckDuckGo/AppUserDefaults.swift +++ b/DuckDuckGo/AppUserDefaults.swift @@ -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 {