# HG changeset patch # User Stephen Paul Weber # Date 1708906660 18000 # Node ID 8b868c00e38eabbc762bdb7928feba65460c2d37 # Parent 83ee752f148cd8940f6ddf2c2055fde1263617f6 mod_muc_adhoc_bots: Fix bug preventing multiple commands from showing diff -r 83ee752f148c -r 8b868c00e38e mod_muc_adhoc_bots/mod_muc_adhoc_bots.lua --- a/mod_muc_adhoc_bots/mod_muc_adhoc_bots.lua Sun Feb 25 19:10:30 2024 -0500 +++ b/mod_muc_adhoc_bots/mod_muc_adhoc_bots.lua Sun Feb 25 19:17:40 2024 -0500 @@ -37,7 +37,7 @@ for j,item in ipairs(query.tags) do item.attr.node = json.encode({ jid = item.attr.jid, node = item.attr.node }) item.attr.jid = event.stanza.attr.to - reply:add_child(item):up() + reply:add_child(item) end end end