Mercurial > prosody-hg
diff plugins/muc/mod_muc.lua @ 10647:d1bfda983ffe
Merge 0.11->trunk
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 13 Feb 2020 14:27:42 +0000 |
| parents | c1edeb9fe337 85585910d468 |
| children | 76bb806cdd4b |
line wrap: on
line diff
--- a/plugins/muc/mod_muc.lua Wed Feb 05 22:53:59 2020 +0000 +++ b/plugins/muc/mod_muc.lua Thu Feb 13 14:27:42 2020 +0000 @@ -111,7 +111,8 @@ return um_is_admin(jid, module.host); end -do -- Monkey patch to make server admins room owners +if module:get_option_boolean("component_admins_as_room_owners", true) then + -- Monkey patch to make server admins room owners local _get_affiliation = room_mt.get_affiliation; function room_mt:get_affiliation(jid) if is_admin(jid) then return "owner"; end
