diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index d3af46e8..aad1b84b 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -670,6 +670,7 @@ const ContinueWatchingSection = React.forwardRef((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((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((props, re season: nextEpisodeVideo.season, episode: nextEpisodeVideo.episode, episodeTitle: `Episode ${nextEpisodeVideo.episode}`, + addonId: progress.addonId, } as ContinueWatchingItem); } }