* fix analytics issue that cause it to be disabled always
This commit is contained in:
parent
e7e2b293d3
commit
331ac63201
@ -134,7 +134,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// initialize analytics
|
// initialize analytics
|
||||||
Analytics.setEnabled(System.getProperty("application.analytics") == null ? true : Boolean.getBoolean(System.getProperty("application.analytics")));
|
Analytics.setEnabled(System.getProperty("application.analytics") == null ? true : Boolean.parseBoolean(System.getProperty("application.analytics")));
|
||||||
|
|
||||||
// CLI mode => run command-line interface and then exit
|
// CLI mode => run command-line interface and then exit
|
||||||
if (args.runCLI()) {
|
if (args.runCLI()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user