From 1bf59a66bf62a9b45009f811bd42b7d83f3a96ad Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 29 Sep 2025 11:02:30 +0800 Subject: [PATCH] bugfix --- bricks/camera.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/camera.js b/bricks/camera.js index 5763ea3..a7bf124 100644 --- a/bricks/camera.js +++ b/bricks/camera.js @@ -106,7 +106,7 @@ bricks.Camera = class extends bricks.Popup { if (this.record_status == 'recording'){ this.record_status = 'standby'; this.shot_btn.set_url(bricks_resource('imgs/start_recording.svg')); - this.viderecorder_stop(); + this.videorecorder_stop(); } else { this.record_status = 'recording'; this.shot_btn.set_url(bricks_resource('imgs/stop_recording.svg'));