* fix analytics issue that cause it to be disabled always

This commit is contained in:
Reinhard Pointner 2013-03-22 13:16:00 +00:00
parent e7e2b293d3
commit 331ac63201
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class Main {
}
// 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
if (args.runCLI()) {