Changeset

7980:241f02bd66ce

mod_pubsub: Rely on type checking in module API
author Kim Alvefur <zash@zash.se>
date Thu, 16 Mar 2017 21:02:40 +0100
parents 7979:a1e88642411d
children 7981:bbb900cfcfa5
files plugins/mod_pubsub/mod_pubsub.lua
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_pubsub/mod_pubsub.lua	Thu Mar 16 21:01:45 2017 +0100
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Thu Mar 16 21:02:40 2017 +0100
@@ -9,8 +9,7 @@
 
 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("name");
-if type(pubsub_disco_name) ~= "string" then pubsub_disco_name = "Prosody PubSub Service"; end
+local pubsub_disco_name = module:get_option_string("name" "Prosody PubSub Service");
 local expose_publisher = module:get_option_boolean("expose_publisher", false)
 
 local service;