aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-16 15:07:28 +0200
committerKim Alvefur <zash@zash.se>2018-08-16 15:07:28 +0200
commitb6650288541de6689ba4ae46667f7d04a4f8558a (patch)
treed188b6c3feb434342d1c2dfd4ac641edc10412cc /plugins/mod_pubsub
parent2bbecd6d17010b16e84b55773c206a4222a8e3e1 (diff)
downloadprosody-b6650288541de6689ba4ae46667f7d04a4f8558a.tar.gz
prosody-b6650288541de6689ba4ae46667f7d04a4f8558a.zip
mod_pubsub: Use the correct form field
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 132a4972..1850c54c 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -99,9 +99,9 @@ local node_config_form = dataform {
};
{
type = "boolean";
- label = "Whether to deliver payloads with event notifications";
- name = "pubsub#deliver_payloads";
- value = true;
+ value = "true";
+ label = "Whether to deliver event notifications";
+ name = "pubsub#deliver_notifications";
};
{
type = "list-single";