mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
usermanager: Fix traceback when checking admin status of host-only JIDs (fixes #1508)
This commit is contained in:
parent
9fcef682cb
commit
aa899ea68f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue