mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-25 04:06:14 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user