diff options
author | Matthew Wild <mwild1@gmail.com> | 2017-03-17 13:04:18 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2017-03-17 13:04:18 +0000 |
commit | b9135dfdd21b5ebb88a86aed3cf41e40af7e8e7e (patch) | |
tree | b1f25985ec6b392ceaa3da657199289454e82f79 /plugins/mod_pubsub | |
parent | a374056fa56185322141484732d963abdee02941 (diff) | |
download | prosody-b9135dfdd21b5ebb88a86aed3cf41e40af7e8e7e.tar.gz prosody-b9135dfdd21b5ebb88a86aed3cf41e40af7e8e7e.zip |
mod_pubsub: Fix syntax error introduced in 241f02bd66ce
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r-- | plugins/mod_pubsub/mod_pubsub.lua | 2 |
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; |