From 644b6ca8c90c93e7b56dc8b446e3c261132d8486 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sun, 1 Feb 2026 08:28:13 -0700 Subject: [PATCH] Update SkipTracker.tsx --- src/components/player/internals/Backend/SkipTracker.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/player/internals/Backend/SkipTracker.tsx b/src/components/player/internals/Backend/SkipTracker.tsx index 890500c7..b15aaecd 100644 --- a/src/components/player/internals/Backend/SkipTracker.tsx +++ b/src/components/player/internals/Backend/SkipTracker.tsx @@ -74,10 +74,9 @@ export function SkipTracker() { ? Math.max(0.1, pendingSkip.originalConfidence * 0.5) // Reduce confidence by half if adjusted : pendingSkip.originalConfidence; - // Only send analytics if skip time came from fed-skips or introdb (not theintrodb) + // Only send analytics if skip time came from fed-skips if ( - pendingSkip.skipTimeSource === "fed-skips" || - pendingSkip.skipTimeSource === "introdb" + pendingSkip.skipTimeSource === "fed-skips" ) { // Send analytics sendSkipAnalytics(pendingSkip.skip, adjustedConfidence);