diff options
Diffstat (limited to 'plugins/muc/subject.lib.lua')
-rw-r--r-- | plugins/muc/subject.lib.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/muc/subject.lib.lua b/plugins/muc/subject.lib.lua index d1895b4d..0b4e6fd6 100644 --- a/plugins/muc/subject.lib.lua +++ b/plugins/muc/subject.lib.lua @@ -38,9 +38,8 @@ module:hook("muc-config-form", function(event) }); end); -module:hook("muc-config-submitted", function(event) - local new = event.fields["muc#roomconfig_changesubject"]; - if new ~= nil and set_changesubject(event.room, new) then +module:hook("muc-config-submitted/muc#roomconfig_changesubject", function(event) + if set_changesubject(event.room, event.value) then event.status_codes["104"] = true; end end); |