mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
* 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
|
||||
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()) {
|
||||
|
Loading…
Reference in New Issue
Block a user