mirror of
https://github.com/p-stream/p-stream.git
synced 2026-05-07 08:59:56 +00:00
prettier
This commit is contained in:
parent
6bfb07f867
commit
427828d714
2 changed files with 2 additions and 4 deletions
|
|
@ -4,8 +4,8 @@ import { useEffect } from "react";
|
|||
import { mwFetch, proxiedFetch } from "@/backend/helpers/fetch";
|
||||
import { usePlayerMeta } from "@/components/player/hooks/usePlayerMeta";
|
||||
import { conf } from "@/setup/config";
|
||||
import { usePlayerStore } from "@/stores/player/store";
|
||||
import { getMediaKey } from "@/stores/player/slices/source";
|
||||
import { usePlayerStore } from "@/stores/player/store";
|
||||
import { usePreferencesStore } from "@/stores/preferences";
|
||||
import { getTurnstileToken } from "@/utils/turnstile";
|
||||
|
||||
|
|
|
|||
|
|
@ -75,9 +75,7 @@ export function SkipTracker() {
|
|||
: pendingSkip.originalConfidence;
|
||||
|
||||
// Only send analytics if skip time came from fed-skips
|
||||
if (
|
||||
pendingSkip.skipTimeSource === "fed-skips"
|
||||
) {
|
||||
if (pendingSkip.skipTimeSource === "fed-skips") {
|
||||
// Send analytics
|
||||
sendSkipAnalytics(pendingSkip.skip, adjustedConfidence);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue