mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.12->trunk
This commit is contained in:
commit
02b01c4826
2 changed files with 7 additions and 1 deletions
|
@ -210,6 +210,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 --
|
||||
|
|
|
@ -19,6 +19,7 @@ end
|
|||
local server = require "net.server";
|
||||
|
||||
local adminstream = require "util.adminstream";
|
||||
local st = require "util.stanza";
|
||||
|
||||
local socket_path = module:get_option_path("admin_socket", "prosody.sock", "data");
|
||||
|
||||
|
@ -35,7 +36,11 @@ local function fire_admin_event(session, stanza)
|
|||
event_name = "admin/"..stanza.name;
|
||||
end
|
||||
module:log("debug", "Firing %s", event_name);
|
||||
return module:fire_event(event_name, event_data);
|
||||
local ret = module:fire_event(event_name, event_data);
|
||||
if ret == nil then
|
||||
session.send(st.stanza("repl-result", { type = "error" }):text("No module handled this query. Is mod_admin_shell enabled?"));
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
module:hook("server-stopping", function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue