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