usermanager: Fix traceback when checking admin status of host-only JIDs (fixes #1508)

This commit is contained in:
Matthew Wild 2020-03-19 14:12:40 +00:00
parent 9fcef682cb
commit aa899ea68f

View file

@ -149,7 +149,7 @@ local function get_roles(jid, host)
local authz_provider = (host ~= "*" and hosts[host].authz) or global_authz_provider;
if actor_host == host then -- Local user
if actor_user and actor_host == host then -- Local user
roles = authz_provider.get_user_roles(actor_user);
else -- Remote user/JID
roles = authz_provider.get_jid_roles(jid);