bug fix
This commit is contained in:
@@ -1532,7 +1532,7 @@ public class JDUtil {
|
|||||||
String s = redisTemplate.opsForValue().get(redisKey);
|
String s = redisTemplate.opsForValue().get(redisKey);
|
||||||
Integer num = 1;
|
Integer num = 1;
|
||||||
try {
|
try {
|
||||||
num = Integer.parseInt(split[2]);
|
num = Integer.parseInt(split[2].replaceAll(" ", ""));
|
||||||
} catch (NumberFormatException ignored) {
|
} catch (NumberFormatException ignored) {
|
||||||
}
|
}
|
||||||
for (int i = 0; i < num; i++){
|
for (int i = 0; i < num; i++){
|
||||||
|
|||||||
Reference in New Issue
Block a user