wangning 8 years ago
parent 7e2e560e54
commit d535f982e4

@ -109,10 +109,10 @@ public class SimpleClientApplyServiceImpl implements SimpleClientApplyService {
@Override @Override
public void verifyRegisterSMSCode(String codeKey, String phoneNumber) { public void verifyRegisterSMSCode(String codeKey, String phoneNumber) {
String rediskey = getRegisterClientRedisKey(phoneNumber); String rediskey = getRegisterClientRedisKey(phoneNumber);
// String codeValue = stringRedisTemplate.boundValueOps(rediskey).get(); String codeValue = stringRedisTemplate.boundValueOps(rediskey).get();
// if (codeValue == null || !codeValue.equals(codeKey)) { if (codeValue == null || !codeValue.equals(codeKey)) {
// throw new BadRequestException("Verification code has expired or is not correct"); throw new BadRequestException("Verification code has expired or is not correct");
// } }
stringRedisTemplate.delete(rediskey); stringRedisTemplate.delete(rediskey);
} }

Loading…
Cancel
Save