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 | b501b1365806af7cd25da42f40d41dab01b972e3 (patch) | |
tree | c460c2a693857b2b9f6507c685182722c2e640bd /plugins/muc/muc.lib.lua | |
parent | dd338a0a75ff434a0493dfa7b9393882303d9db6 (diff) | |
parent | 0c8605386437a149e30f5e23633e227607386da6 (diff) | |
download | prosody-b501b1365806af7cd25da42f40d41dab01b972e3.tar.gz prosody-b501b1365806af7cd25da42f40d41dab01b972e3.zip |
Merge
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-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; |