From 08583d3855eb35d5758e3df47272f7296728a0b3 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 11 Dec 2015 15:33:58 +0000 Subject: MUC: Update all config form handlers to take advantage of the new per-option events --- plugins/muc/whois.lib.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'plugins/muc/whois.lib.lua') 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 -- cgit v1.2.3