disable chapter break by default
This commit is contained in:
parent
761c5a5743
commit
db2bfbe1dd
@ -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)
|
||||
|
@ -84,7 +84,8 @@ voiceConf {
|
||||
}
|
||||
|
||||
recording {
|
||||
chapterBreakLengthInMinutes = 180
|
||||
# set zero to disable chapter break
|
||||
chapterBreakLengthInMinutes = 0
|
||||
}
|
||||
|
||||
whiteboard {
|
||||
|
Loading…
Reference in New Issue
Block a user