Commit 7fd44367 by 裴大威

Merge branch 'fix-zp1002313' into 'master'

时间格式错误 bug修复

See merge request rays/pcloud-book!395
parents 211ca154 ff3476db
......@@ -162,8 +162,12 @@ public class SelfPushBizImpl implements SelfPushBiz {
}else {
strs[0]=weekDays;
}
for(int i=0;i<=strs.length-1;i++){
Integer weekDay = Integer.valueOf(strs[i]);
List<String> strings = Arrays.asList(strs);
for(int i=0;i<=strings.size()-1;i++){
if(strings.get(i)==null){
break;
}
Integer weekDay = Integer.valueOf(strings.get(i));
if(weekDay==7){
weekDay=1;
}else{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment