mod_roster: Use new :text_tag()

This commit is contained in:
Kim Alvefur 2018-03-21 23:20:59 +01:00
parent 1158e80471
commit 83f7f40ea2

View file

@ -50,7 +50,7 @@ module:hook("iq/self/jabber:iq:roster:query", function(event)
name = item.name,
});
for group in pairs(item.groups) do
roster:tag("group"):text(group):up();
roster:text_tag("group", group);
end
roster:up(); -- move out from item
end