disable chapter break by default

This commit is contained in:
Felipe Cecagno 2019-03-07 11:53:44 -03:00
parent 761c5a5743
commit db2bfbe1dd
2 changed files with 4 additions and 2 deletions

View File

@ -517,7 +517,8 @@ class MeetingActor(
val elapsedInMs = now - lastRecBreakSentOn
val elapsedInMin = TimeUtil.millisToMinutes(elapsedInMs)
if (elapsedInMin > recordingChapterBreakLenghtInMinutes) {
if (recordingChapterBreakLenghtInMinutes > 0 &&
elapsedInMin > recordingChapterBreakLenghtInMinutes) {
lastRecBreakSentOn = now
val event = MsgBuilder.buildRecordingChapterBreakSysMsg(props.meetingProp.intId, TimeUtil.timeNowInMs())
outGW.send(event)

View File

@ -84,7 +84,8 @@ voiceConf {
}
recording {
chapterBreakLengthInMinutes = 180
# set zero to disable chapter break
chapterBreakLengthInMinutes = 0
}
whiteboard {