Treat "check code" exceptions as `false` for legacy API compatibility
This commit is contained in:
parent
035ddc4834
commit
4ce85fdb19
|
@ -997,7 +997,9 @@ public class AccountController {
|
||||||
return registrationServiceClient.checkVerificationCode(sessionId, verificationCode, REGISTRATION_RPC_TIMEOUT).join();
|
return registrationServiceClient.checkVerificationCode(sessionId, verificationCode, REGISTRATION_RPC_TIMEOUT).join();
|
||||||
} catch (final CompletionException e) {
|
} catch (final CompletionException e) {
|
||||||
rethrowRateLimitException(e);
|
rethrowRateLimitException(e);
|
||||||
throw e;
|
|
||||||
|
// For legacy API compatibility, funnel all errors into the same return value
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue