소스 검색

fix: Fixes default values in speakerstats and conf duration modules.

master
Дамян Минков 4 년 전
부모
커밋
7c93a130ca
2개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 1
    2
      resources/prosody-plugins/mod_conference_duration.lua
  2. 1
    2
      resources/prosody-plugins/mod_speakerstats.lua

+ 1
- 2
resources/prosody-plugins/mod_conference_duration.lua 파일 보기

@@ -1,5 +1,4 @@
1 1
 local conference_duration_component
2
-    = module:get_option_string(
3
-        "conference_duration_component", "conferenceduration"..module.host);
2
+    = module:get_option_string("conference_duration_component", "conferenceduration."..module.host);
4 3
 
5 4
 module:add_identity("component", "conference_duration", conference_duration_component);

+ 1
- 2
resources/prosody-plugins/mod_speakerstats.lua 파일 보기

@@ -1,6 +1,5 @@
1 1
 local speakerstats_component
2
-    = module:get_option_string(
3
-        "speakerstats_component", "speakerstats"..module.host);
2
+    = module:get_option_string("speakerstats_component", "speakerstats."..module.host);
4 3
 
5 4
 -- Advertise speaker stats so client can pick up the address and start sending
6 5
 -- dominant speaker events

Loading…
취소
저장