mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_turn_external: Fix type of config option (thanks mirux)
There was a separate boolean option to enable TLS before, but it was merged with the port number option and it seems the typed API interface got confused.
This commit is contained in:
parent
5927315eee
commit
84f93f2336
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ local user = module:get_option_string("turn_external_user");
|
|||
local port = module:get_option_number("turn_external_port", 3478);
|
||||
local ttl = module:get_option_number("turn_external_ttl", 86400);
|
||||
local tcp = module:get_option_boolean("turn_external_tcp", false);
|
||||
local tls_port = module:get_option_boolean("turn_external_tls_port");
|
||||
local tls_port = module:get_option_number("turn_external_tls_port");
|
||||
|
||||
if not secret then error("mod_" .. module.name .. " requires that 'turn_external_secret' be set") end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue