Software /
code /
prosody-modules
Changeset
6131:f80db102fdb1
mod_groups_internal: Disable MUC integration by default
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 01 Jan 2025 14:15:20 +0000 |
parents | 6130:5a0e47ad7d6b |
children | 6132:ffec70ddbffc |
files | mod_groups_internal/mod_groups_internal.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_groups_internal/mod_groups_internal.lua Wed Jan 01 11:48:19 2025 +0000 +++ b/mod_groups_internal/mod_groups_internal.lua Wed Jan 01 14:15:20 2025 +0000 @@ -11,7 +11,7 @@ local group_members_store = module:open_store("groups"); local group_memberships = module:open_store("groups", "map"); -local muc_host_name = module:get_option("groups_muc_host", "groups."..host); +local muc_host_name = module:get_option("groups_muc_host"); local muc_host = nil; local is_contact_subscribed = rostermanager.is_contact_subscribed;