kopia lustrzana https://github.com/ryukoposting/Signal-Android
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 #10367fork-5.53.8
rodzic
043f06e188
commit
97b5a49e36
|
@ -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) {
|
||||
|
|
Ładowanie…
Reference in New Issue