mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Refactor end of module:load
Meant to improve clarity and make improving easier
This commit is contained in:
parent
d89b7fa672
commit
53edd95324
1 changed files with 4 additions and 1 deletions
|
@ -658,7 +658,10 @@ function def_env.module:load(name, hosts)
|
|||
end
|
||||
end
|
||||
|
||||
return ok, (ok and "Module loaded onto "..count.." host"..(count ~= 1 and "s" or "")) or ("Last error: "..tostring(err));
|
||||
if not ok then
|
||||
return ok, "Last error: "..tostring(err);
|
||||
end
|
||||
return ok, "Module loaded onto "..count.." host"..(count ~= 1 and "s" or "");
|
||||
end
|
||||
|
||||
describe_command [[module:unload(module, host) - The same, but just unloads the module from memory]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue