aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-19 07:41:26 +0200
committerKim Alvefur <zash@zash.se>2018-08-19 07:41:26 +0200
commit74cb841d99273ff4ea726cf7ffaf417779622b4b (patch)
tree352f39f725b3be2a00c79f5cb89808ea9947f867 /plugins/mod_pubsub
parentcadba32a2408baf5667e46e4b4bdb6ff7d788e6f (diff)
downloadprosody-74cb841d99273ff4ea726cf7ffaf417779622b4b.tar.gz
prosody-74cb841d99273ff4ea726cf7ffaf417779622b4b.zip
mod_pubsub: Fix boolean value in form
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua2
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";
};