push addonId for trakt up next

This commit is contained in:
chrisk325 2025-12-31 16:58:24 +05:30 committed by GitHub
parent 36ad45cfbc
commit 639e84bb88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -670,6 +670,7 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((props, re
type: 'movie',
progress: item.progress,
lastUpdated: pausedAt,
addonId: progress.addonId,
} as ContinueWatchingItem);
logger.log(`📺 [TraktPlayback] Adding movie ${item.movie.title} with ${item.progress.toFixed(1)}% progress`);
@ -703,6 +704,7 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((props, re
season: item.episode.season,
episode: item.episode.number,
episodeTitle: item.episode.title || `Episode ${item.episode.number}`,
addonId: progress.addonId,
} as ContinueWatchingItem);
processedShows.add(showImdb);
@ -771,6 +773,7 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((props, re
season: nextEpisodeVideo.season,
episode: nextEpisodeVideo.episode,
episodeTitle: `Episode ${nextEpisodeVideo.episode}`,
addonId: progress.addonId,
} as ContinueWatchingItem);
}
}