diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index 9ba6046..d3ae49d 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -249,7 +249,13 @@ const ContinueWatchingSection = React.forwardRef((props, re if (finalContent) { - const result = { metadata, basicContent: finalContent, addonContent, timestamp: now }; + const result = { + metadata, + basicContent: finalContent, + addonContent: preferredAddonMeta, + timestamp: now + }; + metadataCache.current[cacheKey] = result; return result; }