diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-04-02 17:42:22 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-04-02 17:42:22 +0100 |
commit | 97bac9bd826969c524c81709b7ded19fc058323d (patch) | |
tree | 861eaefae2bd906eace48b17e5f6172dca6c8f5c /plugins/muc | |
parent | a479cb0e199235e6ba72de332f3994551cfa2cbb (diff) | |
parent | da820882348572de470a13a1a50f529a51243aa5 (diff) | |
download | prosody-97bac9bd826969c524c81709b7ded19fc058323d.tar.gz prosody-97bac9bd826969c524c81709b7ded19fc058323d.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index d09c768e..8cf8d882 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -1032,7 +1032,7 @@ function room_mt:can_set_role(actor_jid, occupant_jid, role) if actor_jid == true then return true; end local actor = self._occupants[self._jid_nick[actor_jid]]; - if actor.role == "moderator" then + if actor and actor.role == "moderator" then if occupant.affiliation ~= "owner" and occupant.affiliation ~= "admin" then if actor.affiliation == "owner" or actor.affiliation == "admin" then return true; |