# HG changeset patch # User Kim Alvefur # Date 1527435037 -7200 # Node ID bad1be5e467458d12337a10648eb99684f282cb5 # Parent 211fa13c7ca27c4eae8e01b5aa82e905835d6782 riddim.plugins.groupchat: Change numeric stanza attribute to string to comply with util.stanza strict mode diff -r 211fa13c7ca2 -r bad1be5e4674 plugins/groupchat.lua --- a/plugins/groupchat.lua Sun May 20 03:14:32 2018 +0200 +++ b/plugins/groupchat.lua Sun May 27 17:30:37 2018 +0200 @@ -60,7 +60,7 @@ bot.stream:hook("pre-groupchat/joining", function(presence) local muc_x = presence:get_child("x", xmlns_muc); if muc_x then - muc_x:tag("history",{maxstanzas = 0}); + muc_x:tag("history",{maxstanzas = "0"}); end end); end