This commit is contained in:
Linrador 2026-04-04 13:28:10 +02:00
parent 7298e4c91f
commit 078c60548c

View File

@ -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<boolean> => {
const norm0 = normalizeHttpUrl(rawUrl)