Challenge: remove obsolete option
Co-authored-by: Chris Eager <79161849+eager-signal@users.noreply.github.com>
This commit is contained in:
parent
10e4455978
commit
7d9effad8d
1 changed files with 1 additions and 8 deletions
|
@ -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.`
|
||||
|
|
Loading…
Add table
Reference in a new issue