completely revert all changes for sort order

This commit is contained in:
chrisk325 2026-03-02 23:56:50 +05:30 committed by GitHub
parent d85a0f1899
commit 87931064fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1196,8 +1196,8 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((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(
(it.lastUpdated ?? 0),
(mostRecentLocal.lastUpdated ?? 0)
(mostRecentLocal.lastUpdated ?? 0),
(it.lastUpdated ?? 0)
);
try {