瀏覽代碼

fix: voice note mic not stopping issue

Timothy J. Baek 6 月之前
父節點
當前提交
466eea1a4c
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      src/lib/components/chat/MessageInput/VoiceRecording.svelte

+ 7 - 0
src/lib/components/chat/MessageInput/VoiceRecording.svelte

@@ -269,6 +269,13 @@
 			await mediaRecorder.stop();
 		}
 		clearInterval(durationCounter);
+
+		if (stream) {
+			const tracks = stream.getTracks();
+			tracks.forEach((track) => track.stop());
+		}
+
+		stream = null;
 	};
 </script>