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:
Kim Alvefur 2022-08-25 22:40:41 +02:00
parent e4ed9a570a
commit b292127500

View file

@ -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