X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmuc%2Fhidden.lib.lua;h=35ca302636e618226f5440958903318e338a2ca3;hb=a8ed035a194773d87b973b9b4f1cae40c6ae5d8a;hp=5ce43db8e71f11c00a990b193bea68ebe339d268;hpb=21c1541fb77110bb33debbdaec57a6c5820a31e7;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);