aboutsummaryrefslogtreecommitdiffstats
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
commitb62a1e6ddb4a663aaf8317fed0290537f9a2f04d (patch)
tree352f39f725b3be2a00c79f5cb89808ea9947f867
parent3c79ad79ae8898f491fab7873e86158af2e1f836 (diff)
downloadprosody-b62a1e6ddb4a663aaf8317fed0290537f9a2f04d.tar.gz
prosody-b62a1e6ddb4a663aaf8317fed0290537f9a2f04d.zip
mod_pubsub: Fix boolean value in form
-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";
};