MUC: Update all config form handlers to take advantage of the new per-option events
[prosody.git] / plugins / muc / hidden.lib.lua
index 5ce43db8e71f11c00a990b193bea68ebe339d268..35ca302636e618226f5440958903318e338a2ca3 100644 (file)
@@ -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);