# HG changeset patch # User Kim Alvefur # Date 1455831533 -3600 # Node ID cb0fc00a70864da96c1b401ee74fcfda45b91344 # Parent 49cc6a555dc77466be4892cbf2e7f7315c9b5679 mod_cloud_notify: Fix syntax error diff -r 49cc6a555dc7 -r cb0fc00a7086 mod_cloud_notify/mod_cloud_notify.lua --- a/mod_cloud_notify/mod_cloud_notify.lua Thu Feb 18 22:37:50 2016 +0100 +++ b/mod_cloud_notify/mod_cloud_notify.lua Thu Feb 18 22:38:53 2016 +0100 @@ -91,7 +91,7 @@ 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("item"); + :tag("item") :tag("notification", { xmlns = xmlns_push }); local form_data = { ["message-count"] = tostring(push_info.count);