X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmuc%2Fhidden.lib.lua;h=35ca302636e618226f5440958903318e338a2ca3;hb=a81725f764e9fb73f50008e65b75cdfecbc6d0e3;hp=5ce43db8e71f11c00a990b193bea68ebe339d268;hpb=c9492b4832d02487e200126d7caea403bc5e06fd;p=prosody.git diff --git a/plugins/muc/hidden.lib.lua b/plugins/muc/hidden.lib.lua index 5ce43db8..35ca3026 100644 --- a/plugins/muc/hidden.lib.lua +++ b/plugins/muc/hidden.lib.lua @@ -28,9 +28,8 @@ module:hook("muc-config-form", function(event) }); end); -module:hook("muc-config-submitted", function(event) - local new = event.fields["muc#roomconfig_publicroom"]; - if new ~= nil and set_hidden(event.room, not new) then +module:hook("muc-config-submitted/muc#roomconfig_publicroom", function(event) + if set_hidden(event.room, not event.value) then event.status_codes["104"] = true; end end);