no single quotes

This commit is contained in:
AndreKoepke 2020-04-14 14:10:29 +02:00 committed by GitHub
parent 8e38910dd8
commit b651dc845b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@
});
// determine if "--use-tls"-flag was provided
config["tls"] = process.argv.indexOf(`--use-tls`) > 0;
config["tls"] = process.argv.indexOf("--use-tls") > 0;
}
function getServerConfig(url) {