Update default state for whether legacy passwords are disabled.

This was a feature that was removed from the app over 4.5 years ago.
The value should have been manually set to false when they set a
password, meaning that it should be safe to set the default to true.

Fixes #10367
This commit is contained in:
Greyson Parrelli
2022-04-17 10:11:02 -04:00
parent 043f06e188
commit 97b5a49e36

View File

@@ -649,7 +649,7 @@ public class TextSecurePreferences {
}
public static boolean isPasswordDisabled(Context context) {
return getBooleanPreference(context, DISABLE_PASSPHRASE_PREF, false);
return getBooleanPreference(context, DISABLE_PASSPHRASE_PREF, true);
}
public static void setPasswordDisabled(Context context, boolean disabled) {