diff --git a/src/components/Stream.js b/src/components/Stream.js index 95994c1..5204684 100644 --- a/src/components/Stream.js +++ b/src/components/Stream.js @@ -5,10 +5,11 @@ function Stream({ stream, muted }) { useEffect(() => { if (audioRef.current) { audioRef.current.srcObject = stream; + audioRef.current.play(); } }, [stream]); - return