Skip to content

Commit 0a09bcc

Browse files
committed
Fix mediaRecorder blob type in modal-recording.component.ts
1 parent c0eb509 commit 0a09bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: apps/webapp/src/app/components/modal-recording/modal-recording.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class ModalRecordingComponent implements AfterViewInit {
5252
mimeType: 'video/webm',
5353
});
5454
this.mediaRecorder.ondataavailable = (event) => {
55-
const blob = new Blob([event.data], { type: 'video/webm' });
55+
const blob = new Blob([event.data], { type: 'audio/webm' });
5656
const url = URL.createObjectURL(blob);
5757
this.status.set('success');
5858
this.blob.set(blob);

0 commit comments

Comments
 (0)