From 93bd817eafb018d3efed5c0599e4fa8cf75937f7 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Tue, 10 Dec 2024 20:22:41 +1100 Subject: [PATCH] Removed old function argumement --- components/video-player/controls/Controls.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/video-player/controls/Controls.tsx b/components/video-player/controls/Controls.tsx index 1db6434d..b601642f 100644 --- a/components/video-player/controls/Controls.tsx +++ b/components/video-player/controls/Controls.tsx @@ -404,7 +404,7 @@ export const Controls: React.FC = ({ const switchOnEpisodeMode = () => { setEpisodeView(true); - if (isPlaying) togglePlay(progress.value); + if (isPlaying) togglePlay(); }; const gotoEpisode = async (itemId: string) => {