fix: ShareConfig Always UseFingerprint
This commit is contained in:
parent
d33fcb8214
commit
06c4746bdf
@ -116,7 +116,7 @@ public class SharedConfig {
|
||||
public static boolean allowScreenCapture;
|
||||
public static int lastPauseTime;
|
||||
public static boolean isWaitingForPasscodeEnter;
|
||||
public static boolean useFingerprint = true;
|
||||
public static boolean useFingerprint = false;
|
||||
public static String lastUpdateVersion;
|
||||
public static int suggestStickers;
|
||||
public static boolean suggestAnimatedEmoji;
|
||||
@ -1154,7 +1154,7 @@ public class SharedConfig {
|
||||
badPasscodeTries = preferences.getInt("badPasscodeTries", 0);
|
||||
autoLockIn = preferences.getInt("autoLockIn", 60 * 60);
|
||||
lastPauseTime = preferences.getInt("lastPauseTime", 0);
|
||||
useFingerprint = preferences.getBoolean("useFingerprint", true);
|
||||
useFingerprint = preferences.getBoolean("useFingerprint", false);
|
||||
lastUpdateVersion = preferences.getString("lastUpdateVersion2", "3.5");
|
||||
allowScreenCapture = preferences.getBoolean("allowScreenCapture", false);
|
||||
lastLocalId = preferences.getInt("lastLocalId", -210000);
|
||||
@ -1454,7 +1454,7 @@ public class SharedConfig {
|
||||
passcodeSalt = new byte[0];
|
||||
autoLockIn = 60 * 60;
|
||||
lastPauseTime = 0;
|
||||
useFingerprint = true;
|
||||
useFingerprint = false;
|
||||
isWaitingForPasscodeEnter = false;
|
||||
allowScreenCapture = false;
|
||||
lastUpdateVersion = BuildVars.BUILD_VERSION_STRING;
|
||||
|
Loading…
Reference in New Issue
Block a user