1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* 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

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()) {