mod_admin_shell, prosodyctl shell: Report command failure when no password entered (fixes #1907)

This commit is contained in:
Matthew Wild 2025-03-31 17:30:50 +01:00
parent 4f94d2425d
commit f0042849ba
2 changed files with 12 additions and 2 deletions

View file

@ -134,7 +134,11 @@ local function start(arg) --luacheck: ignore 212/arg
end
if stanza.attr.type == "password" then
local password = human_io.read_password();
client.send(st.stanza("repl-requested-input", { type = stanza.attr.type, id = stanza.attr.id }):text(password));
client.send(st.stanza("repl-requested-input", {
type = stanza.attr.type;
id = stanza.attr.id;
status = password and "submit" or "cancel";
}):text(password or ""));
else
io.stderr:write("Internal error - unexpected input request type "..tostring(stanza.attr.type).."\n");
os.exit(1);