From 0399276c4f287d507a112203bb0d4f895b761c8a Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Thu, 10 Jul 2025 11:33:43 -0600 Subject: [PATCH] move and rename watchparty reporter --- .../{WebhookReporter.tsx => Backend/WatchPartyReporter.tsx} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/components/player/internals/{WebhookReporter.tsx => Backend/WatchPartyReporter.tsx} (99%) diff --git a/src/components/player/internals/WebhookReporter.tsx b/src/components/player/internals/Backend/WatchPartyReporter.tsx similarity index 99% rename from src/components/player/internals/WebhookReporter.tsx rename to src/components/player/internals/Backend/WatchPartyReporter.tsx index 86d9fa07..61e1cd84 100644 --- a/src/components/player/internals/WebhookReporter.tsx +++ b/src/components/player/internals/Backend/WatchPartyReporter.tsx @@ -19,7 +19,7 @@ export const emitValidationStatus = (success: boolean) => { /** * Component that sends player status to the backend when watch party is enabled */ -export function WebhookReporter() { +export function WatchPartyReporter() { const { statusHistory, latestStatus } = usePlayerStatusPolling(5); // Keep last 5 status points const lastReportTime = useRef(0); const lastReportedStateRef = useRef("");