From b7cc540c2c588277080875f4fd441199d2300e68 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 25 Mar 2019 10:25:10 +0900 Subject: [PATCH] fixes to the merge routine --- src/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.d b/src/main.d index 596a9505..b7430db2 100644 --- a/src/main.d +++ b/src/main.d @@ -237,7 +237,7 @@ int main(string[] args) } // if --synchronize && --monitor passed in, exit & display help as these conflict with each other - if (synchronize && monitor) { + if (cfg.getValueBool("synchronize") && cfg.getValueBool("monitor")) { writeln("\nERROR: --synchronize and --monitor cannot be used together\n"); writeln("Refer to --help to determine which command option you should use.\n"); oneDrive.http.shutdown();