Update captcha help text

This commit is contained in:
AsamK 2023-10-22 19:35:57 +02:00
parent 7887a5a613
commit 101c217ef8
3 changed files with 4 additions and 6 deletions

View file

@ -102,7 +102,7 @@ Voice verification only works if an SMS verification has been attempted before.
The captcha token, required if registration failed with a captcha required error.
To get the token, go to https://signalcaptchas.org/registration/generate.html
For the staging environment, use: https://signalcaptchas.org/staging/registration/generate.html
Check the developer tools for a redirect starting with signalcaptcha:// Everything after signalcaptcha:// is the captcha token.
After solving the captcha, right-click on the "Open Signal" link and copy the link.
=== verify
@ -163,7 +163,7 @@ Voice verification only works if an SMS verification has been attempted before.
The captcha token, required if registration failed with a captcha required error.
To get the token, go to https://signalcaptchas.org/registration/generate.html
For the staging environment, use: https://signalcaptchas.org/staging/registration/generate.html
Check the developer tools for a redirect starting with signalcaptcha:// Everything after signalcaptcha:// is the captcha token.
After solving the captcha, right-click on the "Open Signal" link and copy the link.
=== finishChangeNumber

View file

@ -105,8 +105,7 @@ public class CommandUtil {
message = """
Captcha required for verification, use --captcha CAPTCHA
To get the token, go to https://signalcaptchas.org/registration/generate.html
Check the developer tools (F12) console for a failed redirect to signalcaptcha://
Everything after signalcaptcha:// is the captcha token.""";
After solving the captcha, right-click on the "Open Signal" link and copy the link.""";
} else {
message = "Invalid captcha given.";
}

View file

@ -90,8 +90,7 @@ public class SendMessageResultUtils {
failure.getOptions().contains(ProofRequiredException.Option.RECAPTCHA)
? """
To get the captcha token, go to https://signalcaptchas.org/challenge/generate.html
Check the developer tools (F12) console for a failed redirect to signalcaptcha://
Everything after signalcaptcha:// is the captcha token.
After solving the captcha, right-click on the "Open Signal" link and copy the link.
Use the following command to submit the captcha token:
signal-cli submitRateLimitChallenge --challenge CHALLENGE_TOKEN --captcha CAPTCHA_TOKEN"""
: ""