From 2e79c3406864fd8e2ecf7c3ffa4d445a22a841c9 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Tue, 30 Dec 2025 19:49:19 +0530 Subject: [PATCH 1/2] small fix --- src/components/home/ContinueWatchingSection.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index f6f110f4..5feb9cb7 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -924,11 +924,13 @@ const ContinueWatchingSection = React.forwardRef((props, re id: item.id, type: item.type, episodeId: episodeId + addonId: item.addonId }); } else { navigation.navigate('Metadata', { id: item.id, type: item.type + addonId: item.addonId }); } } else { From d19f4713a28fc43d5a0b3cfc652510a49e934c7d Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Tue, 30 Dec 2025 20:38:55 +0530 Subject: [PATCH 2/2] syntax --- src/components/home/ContinueWatchingSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index 5feb9cb7..26330c6e 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -923,13 +923,13 @@ const ContinueWatchingSection = React.forwardRef((props, re navigation.navigate('Metadata', { id: item.id, type: item.type, - episodeId: episodeId + episodeId: episodeId, addonId: item.addonId }); } else { navigation.navigate('Metadata', { id: item.id, - type: item.type + type: item.type, addonId: item.addonId }); }