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
|
local conference_duration_component
|
||||||
= module:get_option_string(
|
= module:get_option_string("conference_duration_component", "conferenceduration."..module.host);
|
||||||
"conference_duration_component", "conferenceduration"..module.host);
|
|
||||||
|
|
||||||
module:add_identity("component", "conference_duration", conference_duration_component);
|
module:add_identity("component", "conference_duration", conference_duration_component);
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
local speakerstats_component
|
local speakerstats_component
|
||||||
= module:get_option_string(
|
= module:get_option_string("speakerstats_component", "speakerstats."..module.host);
|
||||||
"speakerstats_component", "speakerstats"..module.host);
|
|
||||||
|
|
||||||
-- Advertise speaker stats so client can pick up the address and start sending
|
-- Advertise speaker stats so client can pick up the address and start sending
|
||||||
-- dominant speaker events
|
-- dominant speaker events
|
||||||
|
|
Loading…
Reference in New Issue