aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-11-06 13:49:40 +0100
committerKim Alvefur <zash@zash.se>2020-11-06 13:49:40 +0100
commitbb705173155a0e6fce0f8cfefd46119b277b8459 (patch)
tree38a002c0c90e383c684d2a9868f77b92e5e3b105
parentmod_pubsub: Lower priority of default <body> generator (diff)
downloadprosody-bb705173155a0e6fce0f8cfefd46119b277b8459.tar.xz
prosody-bb705173155a0e6fce0f8cfefd46119b277b8459.zip
mod_pubsub: Fix notification stanza type setting (fixes #1605)
-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 b6019c71d..c13630c95 100644
--- a/plugins/mod_pubsub/mod_pubsub.lua
+++ b/plugins/mod_pubsub/mod_pubsub.lua
@@ -72,7 +72,7 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj)
end
local id = new_id();
- local msg_type = node_obj and node_obj.config.message_type or "headline";
+ local msg_type = node_obj and node_obj.config.notification_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 })