Software /
code /
prosody
Diff
plugins/muc/history.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 | 6535:0f940a7ba489 |
child | 7086:6cc7c9da29ed |
line wrap: on
line diff
--- a/plugins/muc/history.lib.lua Fri Dec 11 15:27:01 2015 +0000 +++ b/plugins/muc/history.lib.lua Fri Dec 11 15:33:58 2015 +0000 @@ -23,7 +23,9 @@ end local function set_historylength(room, length) - length = assert(tonumber(length), "Length not a valid number"); + if length then + length = assert(tonumber(length), "Length not a valid number"); + end if length == default_history_length then length = nil; end room._data.history_length = length; return true; @@ -38,9 +40,8 @@ }); end); -module:hook("muc-config-submitted", function(event) - local new = event.fields["muc#roomconfig_historylength"]; - if new ~= nil and set_historylength(event.room, new) then +module:hook("muc-config-submitted/muc#roomconfig_historylength", function(event) + if set_historylength(event.room, event.value) then event.status_codes["104"] = true; end end);