diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-19 07:41:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-19 07:41:26 +0200 |
commit | 74cb841d99273ff4ea726cf7ffaf417779622b4b (patch) | |
tree | 352f39f725b3be2a00c79f5cb89808ea9947f867 /plugins | |
parent | cadba32a2408baf5667e46e4b4bdb6ff7d788e6f (diff) | |
download | prosody-74cb841d99273ff4ea726cf7ffaf417779622b4b.tar.gz prosody-74cb841d99273ff4ea726cf7ffaf417779622b4b.zip |
mod_pubsub: Fix boolean value in form
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index f46068ae..4fde5318 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -100,7 +100,7 @@ local node_config_form = dataform { }; { type = "boolean"; - value = "true"; + value = true; label = "Whether to deliver event notifications"; name = "pubsub#deliver_notifications"; }; |