pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update SkipTracker.tsx

authored by

Pas and committed by
GitHub
644b6ca8 a6328ed5

+2 -3
+2 -3
src/components/player/internals/Backend/SkipTracker.tsx
··· 74 74 ? Math.max(0.1, pendingSkip.originalConfidence * 0.5) // Reduce confidence by half if adjusted 75 75 : pendingSkip.originalConfidence; 76 76 77 - // Only send analytics if skip time came from fed-skips or introdb (not theintrodb) 77 + // Only send analytics if skip time came from fed-skips 78 78 if ( 79 - pendingSkip.skipTimeSource === "fed-skips" || 80 - pendingSkip.skipTimeSource === "introdb" 79 + pendingSkip.skipTimeSource === "fed-skips" 81 80 ) { 82 81 // Send analytics 83 82 sendSkipAnalytics(pendingSkip.skip, adjustedConfidence);