From 7d9effad8dbfb18e021d64b940310bdf01a92a9e Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 24 Jun 2024 16:49:32 -0500 Subject: [PATCH] Challenge: remove obsolete option Co-authored-by: Chris Eager <79161849+eager-signal@users.noreply.github.com> --- ts/challenge.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ts/challenge.ts b/ts/challenge.ts index 9ac039ac3c..f7f32cd3ac 100644 --- a/ts/challenge.ts +++ b/ts/challenge.ts @@ -259,14 +259,7 @@ export class ChallengeHandler { log.info(`${logId}: tracking ${conversationId} with no waitTime`); } - if ( - data && - !( - data.options?.includes('captcha') || - // 'recaptcha' is deprecated for removal in 90 days - data.options?.includes('recaptcha') - ) - ) { + if (data && !data.options?.includes('captcha')) { const dataString = JSON.stringify(data.options); log.error( `${logId}: unexpected options ${dataString}. ${conversationId} is waiting.`