mod_pubsub_serverinfo: node is a string, not a number
authorMatthew Wild <mwild1@gmail.com>
Tue, 16 Apr 2024 13:03:39 +0100
changeset 5890 2c85397d7241
parent 5889 54b451c3790c
child 5891 2aa66e928aa0
mod_pubsub_serverinfo: node is a string, not a number
mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua
--- a/mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua	Tue Apr 16 12:58:08 2024 +0100
+++ b/mod_pubsub_serverinfo/mod_pubsub_serverinfo.lua	Tue Apr 16 13:03:39 2024 +0100
@@ -5,7 +5,7 @@
 
 local local_domain = module:get_host();
 local service = module:get_option_string(module.name .. "_service");
-local node = module:get_option_number(module.name .. "_node", "serverinfo");
+local node = module:get_option_string(module.name .. "_node", "serverinfo");
 local actor = module.host .. "/modules/" .. module.name;
 local publication_interval = module:get_option_number(module.name .. "_publication_interval", 300);
 local cache_ttl = module:get_option_number(module.name .. "_cache_ttl", 3600);