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