turnstile fix

This commit is contained in:
evanpelle
2026-05-03 19:27:32 -06:00
parent 257fb9b38e
commit 46266c28fe
2 changed files with 50 additions and 6 deletions
+1 -3
View File
@@ -40,9 +40,7 @@ const workerId = parseInt(process.env.WORKER_ID ?? "0");
const log = logger.child({ comp: `w_${workerId}` });
const playlist = new MapPlaylist();
// TEMPORARY: Turnstile validation disabled while we diagnose intermittent
// invalid-input-response rejections in v31. Flip back to true to re-enable.
const TURNSTILE_ENABLED = false;
const TURNSTILE_ENABLED = true;
// Worker setup
export async function startWorker() {