mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
Add --voice / -v option for voice call verification
This commit is contained in:
parent
9d71313a0c
commit
841519e27a
2 changed files with 12 additions and 4 deletions
|
@ -117,12 +117,16 @@ public class Manager {
|
|||
return registered;
|
||||
}
|
||||
|
||||
public void register() throws IOException {
|
||||
public void register(boolean voiceVerication) throws IOException {
|
||||
password = Util.getSecret(18);
|
||||
|
||||
accountManager = new TextSecureAccountManager(URL, TRUST_STORE, username, password);
|
||||
|
||||
accountManager.requestSmsVerificationCode();
|
||||
if (voiceVerication)
|
||||
accountManager.requestVoiceVerificationCode();
|
||||
else
|
||||
accountManager.requestSmsVerificationCode();
|
||||
|
||||
registered = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue