From 89a9baaa409fcfc8a76906a1c346a3dec64ff755 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 29 Sep 2025 11:41:16 +0800 Subject: [PATCH] bugfix --- bricks/camera.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bricks/camera.js b/bricks/camera.js index 979d16e..ee7c630 100644 --- a/bricks/camera.js +++ b/bricks/camera.js @@ -127,6 +127,7 @@ bricks.Camera = class extends bricks.Popup { this.mediaRecorder.onstop = () => { const blob = new Blob(this.recordedChunks, { type: 'video/webm' }); const url = URL.createObjectURL(blob); + console.log('recorded url=', url); this.recordedChunks = []; this.dispatch('recorded', url); console.log('record end')