From 103bcdd4ccabd8812eb0eae0c1c72ea533873a01 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Tue, 30 Dec 2025 15:34:11 +0530 Subject: [PATCH] save addonId in watch progress --- src/services/storageService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/services/storageService.ts b/src/services/storageService.ts index 9a2b4f7d..70946f2a 100644 --- a/src/services/storageService.ts +++ b/src/services/storageService.ts @@ -5,6 +5,7 @@ interface WatchProgress { currentTime: number; duration: number; lastUpdated: number; + addonId?: string; traktSynced?: boolean; traktLastSynced?: number; traktProgress?: number; @@ -707,4 +708,4 @@ class StorageService { } } -export const storageService = StorageService.getInstance(); \ No newline at end of file +export const storageService = StorageService.getInstance();