Challenge: Only show captcha if requested
This commit is contained in:
parent
11eb1782a7
commit
fc2bccb6b6
1 changed files with 5 additions and 1 deletions
|
@ -267,7 +267,11 @@ export class ChallengeHandler {
|
|||
data.options?.includes('recaptcha')
|
||||
)
|
||||
) {
|
||||
log.error(`${logId}: unexpected options ${JSON.stringify(data.options)}`);
|
||||
const dataString = JSON.stringify(data.options);
|
||||
log.error(
|
||||
`${logId}: unexpected options ${dataString}. ${conversationId} is waiting.`
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!challenge.token) {
|
||||
|
|
Loading…
Add table
Reference in a new issue