From e7b3458f3497d7c2a7e8fb43ca20a9c554a83752 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 3 Jan 2026 19:54:46 +0530 Subject: [PATCH] small fix --- src/components/home/ContinueWatchingSection.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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; }