فهرست منبع

fix: mic kept alive after call issue

Timothy J. Baek 8 ماه پیش
والد
کامیت
8dfbdbd883
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/lib/components/chat/MessageInput/CallOverlay.svelte

+ 2 - 2
src/lib/components/chat/MessageInput/CallOverlay.svelte

@@ -922,8 +922,8 @@
 				<button
 					class=" p-3 rounded-full bg-gray-50 dark:bg-gray-900"
 					on:click={async () => {
-						stopAudioStream();
-						stopVideoStream();
+						await stopAudioStream();
+						await stopVideoStream();
 						showCallOverlay.set(false);
 						dispatch('close');
 					}}