Update ConfigManager.java

This commit is contained in:
LoveSy 2022-02-08 03:02:47 +08:00 committed by LoveSy
parent 33b46b2230
commit 68b98c2850
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ public class ConfigManager {
verboseLog = bool == null || (boolean) bool; verboseLog = bool == null || (boolean) bool;
bool = config.get("enable_dex_obfuscate"); bool = config.get("enable_dex_obfuscate");
dexObfuscate = bool == null || (boolean) bool; dexObfuscate = bool != null && (boolean) bool;
bool = config.get("enable_auto_add_shortcut"); bool = config.get("enable_auto_add_shortcut");
if (bool == null) { if (bool == null) {