MUC: Make rooms hidden (non-public) by default for improved privacy

Thanks to jonasw for highlighting this with the MUC crawler.
remotes/origin/0.11
Kim Alvefur 8 years ago
parent 9e955eb3c3
commit 57dd7642ff
  1. 2
      plugins/muc/mod_muc.lua

@ -285,7 +285,7 @@ end);
module:hook("muc-room-pre-create", function (event)
local room = event.room;
room:set_public(module:get_option_boolean("muc_rooom_default_public", room:get_public()));
room:set_public(module:get_option_boolean("muc_rooom_default_public", false));
room:set_persistent(module:get_option_boolean("muc_rooom_default_persistent", room:get_persistent()));
room:set_members_only(module:get_option_boolean("muc_rooom_default_members_only", room:get_members_only()));
room:set_moderated(module:get_option_boolean("muc_rooom_default_moderated", room:get_moderated()));

Loading…
Cancel
Save