From a40dcdd22223ce541a5f7a956bcc23509281b7ee Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Mon, 29 Jan 2018 22:37:53 +0100 Subject: [PATCH] Prevent "wrong type"-issue The argument is may interpreted as number which causes the "pass" parameter of the user creation to fail. Probably the same applies to the mail address. But mail addresses are by definition not allowed to start by a number (iirc) which makes it less a problem. This is mainly a quick fix. Should be refactored a bit in future. Signed-off-by: Sheogorath --- bin/manage_users | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/manage_users b/bin/manage_users index 6bf8bc2..74ac181 100755 --- a/bin/manage_users +++ b/bin/manage_users @@ -33,7 +33,7 @@ async function createUser(argv) { var pass = readline.question("Password for "+argv["add"]+":", {hideEchoBack: true}); } else { console.log("Using password from commandline..."); - var pass = argv["pass"]; + var pass = "" + argv["pass"]; } // Lets try to create, and check success