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
fork-5.53.8
Greyson Parrelli 2022-04-17 10:11:02 -04:00
rodzic 043f06e188
commit 97b5a49e36
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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) {