mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_shell, prosodyctl shell: Report command failure when no password entered (fixes #1907)
This commit is contained in:
parent
4f94d2425d
commit
f0042849ba
2 changed files with 12 additions and 2 deletions
|
@ -205,7 +205,13 @@ module:hook("admin/repl-requested-input", function (event)
|
|||
event.origin.send(st.stanza("repl-result", { type = "error" }):text("Internal error - unexpected input"));
|
||||
return true;
|
||||
end
|
||||
input_promise.resolve(event.stanza:get_text());
|
||||
local status = event.stanza.attr.status or "submit";
|
||||
local text = event.stanza:get_text();
|
||||
if status == "submit" then
|
||||
input_promise.resolve(text);
|
||||
else
|
||||
input_promise.reject(status == "cancel" and (text ~= "" and text) or "cancelled");
|
||||
end
|
||||
return true;
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue