aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2017-03-17 13:08:31 +0000
committerMatthew Wild <mwild1@gmail.com>2017-03-17 13:08:31 +0000
commit3f6b2ced44f52b65d774e5f1486c87e71f5ece36 (patch)
treebde2c18dd96f4ad8dbf284a4e6c95d1172975c37 /plugins/mod_pubsub
parent3e5d5895f9365fbecf497d9080f8f5705a3266a6 (diff)
parentb9135dfdd21b5ebb88a86aed3cf41e40af7e8e7e (diff)
downloadprosody-3f6b2ced44f52b65d774e5f1486c87e71f5ece36.tar.gz
prosody-3f6b2ced44f52b65d774e5f1486c87e71f5ece36.zip
Merge 0.10 -> trunk
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r--plugins/mod_pubsub/mod_pubsub.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua
index 18d85c52..8e7bfc53 100644
--- a/plugins/mod_pubsub/mod_pubsub.lua
+++ b/plugins/mod_pubsub/mod_pubsub.lua
@@ -9,7 +9,7 @@ local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner";
local autocreate_on_publish = module:get_option_boolean("autocreate_on_publish", false);
local autocreate_on_subscribe = module:get_option_boolean("autocreate_on_subscribe", false);
-local pubsub_disco_name = module:get_option_string("name" "Prosody PubSub Service");
+local pubsub_disco_name = module:get_option_string("name", "Prosody PubSub Service");
local expose_publisher = module:get_option_boolean("expose_publisher", false)
local service;