diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-03-31 17:32:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-03-31 17:32:11 +0100 |
commit | 9f728624b290966f40e0f0019e7022da493ca5c8 (patch) | |
tree | 57f5ce96f3e2d027eea5ee432b4a45e86960b987 /plugins | |
parent | ce9fa7d87470402b855556702ca6da0a838b2e23 (diff) | |
parent | f0042849ba7629edd6404179c59fff7b69536d44 (diff) | |
download | prosody-9f728624b290966f40e0f0019e7022da493ca5c8.tar.gz prosody-9f728624b290966f40e0f0019e7022da493ca5c8.zip |
Merge 13.0->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_shell.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index 28d758d0..c2b921b4 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -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); |