This commit is contained in:
Grahame Grieve 2023-04-18 09:51:23 +08:00
parent f60f377a66
commit 5ec1bd9f67

View File

@ -71,7 +71,7 @@ public class ToolGlobalSettings {
public static boolean isNoNetwork() {
init();
return noNetwork;
return noNetwork == null ? false : noNetwork;
}
public static void setNoNetwork(boolean value) {