Software /
code /
prosody-modules
Changeset
5909:54b451c3790c
mod_pubsub_serverinfo: Fix for compatibility with 0.12 option getters
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 16 Apr 2024 12:58:08 +0100 |
parents | 5908:49b0873932ca |
children | 5910:2c85397d7241 |
files | mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua Tue Apr 16 12:41:52 2024 +0100 +++ b/mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua Tue Apr 16 12:58:08 2024 +0100 @@ -5,10 +5,10 @@ local local_domain = module:get_host(); local service = module:get_option_string(module.name .. "_service"); -local node = module:get_option_integer(module.name .. "_node", "serverinfo"); +local node = module:get_option_number(module.name .. "_node", "serverinfo"); local actor = module.host .. "/modules/" .. module.name; -local publication_interval = module:get_option_integer(module.name .. "_publication_interval", 300); -local cache_ttl = module:get_option_integer(module.name .. "_cache_ttl", 3600); +local publication_interval = module:get_option_number(module.name .. "_publication_interval", 300); +local cache_ttl = module:get_option_number(module.name .. "_cache_ttl", 3600); local public_providers_url = module:get_option_string(module.name.."_public_providers_url", "https://data.xmpp.net/providers/v2/providers-Ds.json"); local delete_node_on_unload = module:get_option_boolean(module.name.."_delete_node_on_unload", false); local persist_items = module:get_option_boolean(module.name.."_persist_items", true);