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)