fix: Fixes default values in speakerstats and conf duration modules.
This commit is contained in:
parent
3c18117101
commit
7c93a130ca
|
@ -1,5 +1,4 @@
|
|||
local conference_duration_component
|
||||
= module:get_option_string(
|
||||
"conference_duration_component", "conferenceduration"..module.host);
|
||||
= module:get_option_string("conference_duration_component", "conferenceduration."..module.host);
|
||||
|
||||
module:add_identity("component", "conference_duration", conference_duration_component);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
local speakerstats_component
|
||||
= module:get_option_string(
|
||||
"speakerstats_component", "speakerstats"..module.host);
|
||||
= module:get_option_string("speakerstats_component", "speakerstats."..module.host);
|
||||
|
||||
-- Advertise speaker stats so client can pick up the address and start sending
|
||||
-- dominant speaker events
|
||||
|
|
Loading…
Reference in New Issue