Diff

plugins/muc/whois.lib.lua @ 6991:84e01dbb739e

MUC: Update all config form handlers to take advantage of the new per-option events
author Matthew Wild <mwild1@gmail.com>
date Fri, 11 Dec 2015 15:33:58 +0000
parent 6214:9813c74ce006
child 7075:47a2deb74b56
line wrap: on
line diff
--- a/plugins/muc/whois.lib.lua	Fri Dec 11 15:27:01 2015 +0000
+++ b/plugins/muc/whois.lib.lua	Fri Dec 11 15:33:58 2015 +0000
@@ -41,9 +41,8 @@
 	});
 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