diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-21 10:10:28 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-21 10:10:28 +0100 |
commit | ae95801b73c1b7e91ab37eb1e3ad5e9c184c24df (patch) | |
tree | 639cd1a7fd1fb2fe648a48df8d47bd5156eea15b /plugins | |
parent | 47a2577f269c3596043abec6e0ccbe1cf201e9f2 (diff) | |
download | prosody-ae95801b73c1b7e91ab37eb1e3ad5e9c184c24df.tar.gz prosody-ae95801b73c1b7e91ab37eb1e3ad5e9c184c24df.zip |
mod_muc: Fix incorrect variable name
Diffstat (limited to 'plugins')
-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 1ea231f3..1f725cf7 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -1055,7 +1055,7 @@ function room_mt:get_role(nick) end function room_mt:can_set_role(actor_jid, occupant_jid, role) local occupant = self._occupants[occupant_jid]; - if not occupant or not actor then return nil, "modify", "not-acceptable"; end + if not occupant or not actor_jid then return nil, "modify", "not-acceptable"; end if actor_jid == true then return true; end |