From 6e4268e7f76534823c7134d9438bdad6e3e62626 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 16 Jan 2025 01:11:17 +0000 Subject: [PATCH] FIX WRONG VIDEOS SHOWING UP --- src/screens/Feeds/VibeScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/Feeds/VibeScreen.tsx b/src/screens/Feeds/VibeScreen.tsx index 92611ff94e..a17e1bd278 100644 --- a/src/screens/Feeds/VibeScreen.tsx +++ b/src/screens/Feeds/VibeScreen.tsx @@ -190,7 +190,7 @@ function YoloFeed() { if (prevVideo && prevVideo !== prevPlayerCurrentSource) { prevPlayer.replace(prevVideo) - currentSources[index + (2 % 3)] = prevVideo + currentSources[(index + 2) % 3] = prevVideo } prevPlayer.pause()