aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-12-23 02:50:22 +0100
committerKim Alvefur <zash@zash.se>2018-12-23 02:50:22 +0100
commit5b8df5ea61bf95400c856a65a9e7e24c45bbc17b (patch)
tree71b4ed6427d9e46f1f05086921b2a440a5146786 /plugins/mod_pubsub
parent66b2c62b8956450927b9730e1d6cd395dc779e0e (diff)
downloadprosody-5b8df5ea61bf95400c856a65a9e7e24c45bbc17b.tar.gz
prosody-5b8df5ea61bf95400c856a65a9e7e24c45bbc17b.zip
mod_pubsub: Add semicolon (code style)
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r--plugins/mod_pubsub/mod_pubsub.lua2
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);