# HG changeset patch # User Kim Alvefur # Date 1530519253 -7200 # Node ID 330e8c81f6afe2dd6eac723cddb82ce998d7d4b2 # Parent e995cd0f228ed84cedbd96fffe5e3b34982dd1bc mod_pubsub_stats: Include namespace on pubsub items (fixes use with trunk) diff -r e995cd0f228e -r 330e8c81f6af mod_pubsub_stats/mod_pubsub_stats.lua --- a/mod_pubsub_stats/mod_pubsub_stats.lua Thu Jun 28 21:45:25 2018 +0200 +++ b/mod_pubsub_stats/mod_pubsub_stats.lua Mon Jul 02 10:14:13 2018 +0200 @@ -4,11 +4,13 @@ local actor = module.host .. "/modules/" .. module.name; +local pubsub_xmlns = "http://jabber.org/protocol/pubsub" + local node = module:get_option_string(module.name .. "_node", "stats"); local function publish_stats(stats, stats_extra) local id = "current"; - local xitem = st.stanza("item", { id = id }) + local xitem = st.stanza("item", { xmlns = pubsub_xmlns, id = id }) :tag("query", { xmlns = "http://jabber.org/protocol/stats" }); for name, value in pairs(stats) do