From 078c60548cede8e033e691774c735986f8ad8479 Mon Sep 17 00:00:00 2001 From: Linrador <68631622+Linrador@users.noreply.github.com> Date: Sat, 4 Apr 2026 13:28:10 +0200 Subject: [PATCH] updated --- frontend/src/App.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 898577e..e729383 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2057,16 +2057,6 @@ export default function App() { } }, [authed, recSettings.useChaturbateApi]) - function shouldAlwaysQueueForRoomStatus(show: string): boolean { - const s = String(show || '').trim().toLowerCase() - return s === 'private' || s === 'hidden' || s === 'away' - } - - function shouldQueueForOfflineLikeStatus(show: string): boolean { - const s = String(show || '').trim().toLowerCase() - return s === 'offline' || s === 'unknown' - } - // ✅ StartURL (hier habe ich den alten Online-Fetch entfernt und nur Snapshot genutzt) const startUrl = useCallback(async (rawUrl: string, opts?: { silent?: boolean }): Promise => { const norm0 = normalizeHttpUrl(rawUrl)