Merge pull request #581 from chrisk325/patch-10

completely revert all changes for sort order
This commit is contained in:
Nayif 2026-03-03 00:32:44 +05:30 committed by GitHub
commit b699f87b99
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 {