mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_shell: Fix output from user:roles()
It used _G.print instead of the shell session print, which would silently write to stdout
This commit is contained in:
parent
e4ed9a570a
commit
b292127500
1 changed files with 1 additions and 0 deletions
|
@ -1441,6 +1441,7 @@ function def_env.user:password(jid, password)
|
|||
end
|
||||
|
||||
function def_env.user:role(jid, host)
|
||||
local print = self.session.print;
|
||||
local username, userhost = jid_split(jid);
|
||||
if host == nil then host = userhost; end
|
||||
if not prosody.hosts[host] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue