From b9cca6b388d64e5fdb727fe25e248c65ecc10c3a Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Tue, 25 Mar 2025 15:44:07 +0100 Subject: [PATCH] spot: restore currtime after thumbnail --- spot/entrypoints/content/SavingControls.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/spot/entrypoints/content/SavingControls.tsx b/spot/entrypoints/content/SavingControls.tsx index 8a11134dd..f32ee556b 100644 --- a/spot/entrypoints/content/SavingControls.tsx +++ b/spot/entrypoints/content/SavingControls.tsx @@ -199,6 +199,7 @@ function SavingControls({ return new Promise((res) => { const interval = setInterval(() => { + videoRef.currentTime = 0; if (thumbnailRes) { clearInterval(interval); res(thumbnailRes);