Update ConfigManager.java
This commit is contained in:
parent
33b46b2230
commit
68b98c2850
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue