diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-16 15:07:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-16 15:07:28 +0200 |
commit | b6650288541de6689ba4ae46667f7d04a4f8558a (patch) | |
tree | d188b6c3feb434342d1c2dfd4ac641edc10412cc /plugins/mod_pubsub/pubsub.lib.lua | |
parent | 2bbecd6d17010b16e84b55773c206a4222a8e3e1 (diff) | |
download | prosody-b6650288541de6689ba4ae46667f7d04a4f8558a.tar.gz prosody-b6650288541de6689ba4ae46667f7d04a4f8558a.zip |
mod_pubsub: Use the correct form field
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 6 |
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"; |