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 {