Fix voice broadcast recording limit (#9478)
This commit is contained in:
parent
8ae67aa4dd
commit
d4f1c573ad
4 changed files with 128 additions and 11 deletions
|
@ -139,5 +139,7 @@ export class VoiceBroadcastRecorder
|
|||
}
|
||||
|
||||
export const createVoiceBroadcastRecorder = (): VoiceBroadcastRecorder => {
|
||||
return new VoiceBroadcastRecorder(new VoiceRecording(), getChunkLength());
|
||||
const voiceRecording = new VoiceRecording();
|
||||
voiceRecording.disableMaxLength();
|
||||
return new VoiceBroadcastRecorder(voiceRecording, getChunkLength());
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue