Software /
code /
prosody
Changeset
3768:01cc9cbcbd52
usermanager: Fixed a possible traceback when is_admin() was used on a component.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 17 Dec 2010 22:54:34 +0500 |
parents | 3767:3ba97d1d7a62 |
children | 3769:9338d0785277 |
files | core/usermanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/usermanager.lua Fri Dec 17 17:11:04 2010 +0000 +++ b/core/usermanager.lua Fri Dec 17 22:54:34 2010 +0500 @@ -120,7 +120,7 @@ end -- Still not an admin, check with auth provider - if not is_admin and host ~= "*" and hosts[host].users.is_admin then + if not is_admin and host ~= "*" and hosts[host].users and hosts[host].users.is_admin then is_admin = hosts[host].users.is_admin(jid); end return is_admin or false;