X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fmuc%2Fname.lib.lua;h=2dcb979a244de5cd807e1253c15405e411d5c252;hb=74c88eed6701d02bf77a59aeedb8d8204c41bc17;hp=302c29924949d569a492f6a3f00ff1b3136ccc6c;hpb=dc2e63e570a7722295dfe119ede0c3ffbb9ee5bc;p=prosody.git diff --git a/plugins/muc/name.lib.lua b/plugins/muc/name.lib.lua index 302c2992..2dcb979a 100644 --- a/plugins/muc/name.lib.lua +++ b/plugins/muc/name.lib.lua @@ -17,7 +17,6 @@ local function set_name(room, name) if name == "" or name == (jid_split(room.jid)) then name = nil; end if room._data.name == name then return false; end room._data.name = name; - if room.save then room:save(true); end return true; end @@ -30,9 +29,9 @@ module:hook("muc-config-form", function(event) name = "muc#roomconfig_roomname"; type = "text-single"; label = "Name"; + value = get_name(event.room) or ""; }); - event.formdata["muc#roomconfig_roomname"] = get_name(event.room) or ""; -end); +end, 100-1); module:hook("muc-config-submitted/muc#roomconfig_roomname", function(event) if set_name(event.room, event.value) then