We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a7a6ca + 031f168 commit 0dcdf71Copy full SHA for 0dcdf71
commands/utils/set_args.js
@@ -364,10 +364,8 @@ function sync_args_from_cmd(args) {
364
}
365
366
if ("video" in args) {
367
- lt_config["run_settings"]["video"] = true
368
- ? args["video"] == "true"
369
- : false;
370
- } else if (!lt_config["run_settings"]["video"]) {
+ lt_config["run_settings"]["video"] = args["video"] == "true";
+ } else if (lt_config["run_settings"]["video"] === undefined) {
371
lt_config["run_settings"]["video"] = true;
372
373
0 commit comments