# HG changeset patch # User Kim Alvefur # Date 1445608301 -7200 # Node ID c84cf61ca0f3b86685365b84258cd229e4e75319 # Parent b030e46ec6408eb8a32a7bba0d1d3de73994ae68 mod_cloud_notify: Wrap notification form in diff -r b030e46ec640 -r c84cf61ca0f3 mod_cloud_notify/mod_cloud_notify.lua --- a/mod_cloud_notify/mod_cloud_notify.lua Fri Oct 23 15:51:09 2015 +0200 +++ b/mod_cloud_notify/mod_cloud_notify.lua Fri Oct 23 15:51:41 2015 +0200 @@ -90,7 +90,8 @@ local push_jid, push_node = push_info.jid, push_info.node; local push_publish = st.iq({ to = push_jid, from = node .. "@" .. module.host, type = "set", id = "push" }) :tag("pubsub", { xmlns = "http://jabber.org/protocol/pubsub" }) - :tag("publish", { node = push_node }); + :tag("publish", { node = push_node }) + :tag("item"); local form_data = { ["message-count"] = tostring(push_info.count); };