diff --git a/public/scripts/utils.js b/public/scripts/utils.js index 11b1633..cde0707 100644 --- a/public/scripts/utils.js +++ b/public/scripts/utils.js @@ -73,7 +73,9 @@ export const addVideoStream = (videoContainer, username, stream, isYours) => { if (CSS.supports("::-webkit-media-controls-panel")) video.controls = "controls" video.addEventListener("loadedmetadata", async () => { - video.muted = true + if (isYours) { + video.muted = true + } try { await video.play() } catch (error) {