mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_admin_socket: Return error on unhandled input to prevent apparent freeze
When mod_admin_socket is loaded without mod_admin_shell, attempt to use `prosodyctl shell` will appear to freeze after any input, since no response is returned.
This commit is contained in:
parent
bc1e51eb83
commit
67ea0ee50e
2 changed files with 7 additions and 1 deletions
|
@ -198,6 +198,7 @@ module:hook("admin/repl-input", function (event)
|
|||
if not ok then
|
||||
event.origin.send(st.stanza("repl-result", { type = "error" }):text(err));
|
||||
end
|
||||
return true;
|
||||
end);
|
||||
|
||||
-- Console commands --
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue