Software /
code /
prosody
Changeset
10647:d1bfda983ffe
Merge 0.11->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 13 Feb 2020 14:27:42 +0000 |
parents | 10645:067ada779ea5 (current diff) 10646:85585910d468 (diff) |
children | 10648:2bd17e043275 |
files | plugins/muc/mod_muc.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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