From d6b4e788a8364302800eb63a92f4ff2fb46fd6ac Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Mon, 2 Mar 2026 23:30:05 +0530 Subject: [PATCH] prefer trakt's timestamp over local --- src/components/home/ContinueWatchingSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index 2c303f09..b435db2a 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -1196,8 +1196,8 @@ const ContinueWatchingSection = React.forwardRef((props, re // Always preferring local was wrong: if you watched on another device, // Trakt's paused_at is newer and should win for ordering purposes. const mergedLastUpdated = Math.max( - (mostRecentLocal.lastUpdated ?? 0), - (it.lastUpdated ?? 0) + it.lastUpdated ?? 0, + mostRecentLocal.lastUpdated ?? 0 ); try {