Commit 904f0a11 authored by Donlon's avatar Donlon Committed by skylot

A subtle bug repairing

parent 4d3f2740
......@@ -46,7 +46,8 @@ public class JadxSettingsAdapter {
String jsonSettings = PREFS.get(JADX_GUI_KEY, "");
JadxSettings settings = fromString(jsonSettings);
if (settings == null) {
return new JadxSettings();
LOG.debug("Created new settings.");
settings = new JadxSettings();
}
settings.fixOnLoad();
LOG.debug("Loaded settings: {}", makeString(settings));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment