From 9c3391f4b38023120c177d3cec5d6061c5a9b576 Mon Sep 17 00:00:00 2001 From: Mirlan Date: Fri, 11 Sep 2020 17:40:46 +0600 Subject: [PATCH] fix(#412): passed missing muted props (#140) Co-authored-by: mirlan.maksitaliev --- src/features/VideoPlayer/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/VideoPlayer/index.tsx b/src/features/VideoPlayer/index.tsx index a90e2ca0..0931d33e 100644 --- a/src/features/VideoPlayer/index.tsx +++ b/src/features/VideoPlayer/index.tsx @@ -51,6 +51,7 @@ export const VideoPlayer = (props: Props) => { ref={playerRef} playing={playing} volume={volume} + muted={muted} config={playerConfig} progressInterval={progressCallbackInterval} onProgress={setProgress}