diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-04-01 16:03:21 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-04-01 16:03:21 +0100 |
commit | 216a05303d99abbf602fb118b61943ee5b240b45 (patch) | |
tree | c460c2a693857b2b9f6507c685182722c2e640bd | |
parent | 41bf6c9a93e94431b34a0df7ef96827b2395c5ee (diff) | |
parent | 772919e16a371d1a0bc210b779e63be5a86f26c6 (diff) | |
download | prosody-216a05303d99abbf602fb118b61943ee5b240b45.tar.gz prosody-216a05303d99abbf602fb118b61943ee5b240b45.zip |
Mergevault/0.9.4
-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 0dbe81fa..8028f5ae 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -1060,7 +1060,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; |