Fix a mistake where we're looking for verification codes in place that hasn't been deployed yet (but will be soon!)
This commit is contained in:
parent
c2f40b8503
commit
035ddc4834
|
@ -128,7 +128,7 @@ public class RegistrationServiceClient implements Managed {
|
||||||
default -> throw new CompletionException(new RuntimeException("Failed to check verification code: " + response.getError().getErrorType()));
|
default -> throw new CompletionException(new RuntimeException("Failed to check verification code: " + response.getError().getErrorType()));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return response.getSessionMetadata().getVerified();
|
return response.getVerified() || response.getSessionMetadata().getVerified();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue