X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmuc%2Fname.lib.lua;h=d9bfc4cf0f0a2315ca447ef7daaaa9c4ecf9d5de;hb=a23a33b3fa46dd449a547cd17ed33389d0969ec8;hp=49d1246717899aa366be5ab63e259cd8b680617b;hpb=12b457bd8dc0f23e9e51c65858925ee30368d571;p=prosody.git diff --git a/plugins/muc/name.lib.lua b/plugins/muc/name.lib.lua index 49d12467..d9bfc4cf 100644 --- a/plugins/muc/name.lib.lua +++ b/plugins/muc/name.lib.lua @@ -34,9 +34,8 @@ module:hook("muc-config-form", function(event) }); end); -module:hook("muc-config-submitted", function(event) - local new = event.fields["muc#roomconfig_roomname"]; - if new ~= nil and set_name(event.room, new) then +module:hook("muc-config-submitted/muc#roomconfig_roomname", function(event) + if set_name(event.room, event.value) then event.status_codes["104"] = true; end end);