aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/whois.lib.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-12-11 15:33:58 +0000
committerMatthew Wild <mwild1@gmail.com>2015-12-11 15:33:58 +0000
commitbe2a3acbcdc501f7e6b585f5a5641661fbfa422e (patch)
tree9f64953414397f4188a3542caae8a9df40ca4db5 /plugins/muc/whois.lib.lua
parent422cae2d80d201bba8b182d1c215e0e647628bb1 (diff)
downloadprosody-be2a3acbcdc501f7e6b585f5a5641661fbfa422e.tar.gz
prosody-be2a3acbcdc501f7e6b585f5a5641661fbfa422e.zip
MUC: Update all config form handlers to take advantage of the new per-option events
Diffstat (limited to 'plugins/muc/whois.lib.lua')
-rw-r--r--plugins/muc/whois.lib.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/muc/whois.lib.lua b/plugins/muc/whois.lib.lua
index f89e6087..a8e1f8d4 100644
--- a/plugins/muc/whois.lib.lua
+++ b/plugins/muc/whois.lib.lua
@@ -41,9 +41,8 @@ module:hook("muc-config-form", function(event)
});
end);
-module:hook("muc-config-submitted", function(event)
- local new = event.fields["muc#roomconfig_whois"];
- if new ~= nil and set_whois(event.room, new) then
+module:hook("muc-config-submitted/muc#roomconfig_whois", function(event)
+ if set_whois(event.room, event.value) then
local code = (new == 'moderators') and "173" or "172";
event.status_codes[code] = true;
end