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 | 879cda7ae01c1820b99b3130bb1482898bb22d08 (patch) | |
tree | d188b6c3feb434342d1c2dfd4ac641edc10412cc | |
parent | 9a75fd03cca5c16d1563c9bded852651b30e9436 (diff) | |
download | prosody-879cda7ae01c1820b99b3130bb1482898bb22d08.tar.gz prosody-879cda7ae01c1820b99b3130bb1482898bb22d08.zip |
mod_pubsub: Use the correct form field
-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"; |