diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-23 02:50:22 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-23 02:50:22 +0100 |
commit | 5b8df5ea61bf95400c856a65a9e7e24c45bbc17b (patch) | |
tree | 71b4ed6427d9e46f1f05086921b2a440a5146786 | |
parent | 66b2c62b8956450927b9730e1d6cd395dc779e0e (diff) | |
download | prosody-5b8df5ea61bf95400c856a65a9e7e24c45bbc17b.tar.gz prosody-5b8df5ea61bf95400c856a65a9e7e24c45bbc17b.zip |
mod_pubsub: Add semicolon (code style)
-rw-r--r-- | plugins/mod_pubsub/mod_pubsub.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua index 40adcafe..1edc721b 100644 --- a/plugins/mod_pubsub/mod_pubsub.lua +++ b/plugins/mod_pubsub/mod_pubsub.lua @@ -73,7 +73,7 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj) local msg_type = node_obj and node_obj.config.message_type or "headline"; local message = st.message({ from = module.host, type = msg_type, id = id }) :tag("event", { xmlns = xmlns_pubsub_event }) - :tag(kind, { node = node }) + :tag(kind, { node = node }); if item then message:add_child(item); |