Challenge: remove obsolete option
This commit is contained in:
parent
2478bf1bd3
commit
4e3c79fe25
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