From 3f241bf4000b65fc599d831a84f8ab47ca33c069 Mon Sep 17 00:00:00 2001 From: nocci Date: Sat, 7 Mar 2026 14:31:27 +0000 Subject: [PATCH] fix: use separate locators with OR for captcha detection --- epic-games.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epic-games.js b/epic-games.js index 99df0f7..bd085e9 100644 --- a/epic-games.js +++ b/epic-games.js @@ -316,7 +316,7 @@ try { } }; - const hasCaptcha = await page.locator(':is(.h_captcha_challenge iframe, text=Incorrect response)').count() > 0; + const hasCaptcha = (await page.locator('.h_captcha_challenge iframe').count() > 0) || (await page.locator('text=Incorrect response').count() > 0); if (hasCaptcha) { console.warn('Captcha/Incorrect response detected. Please solve manually in the browser.'); await notify('epic-games: captcha encountered; please solve manually in browser.');