Skip to content

Commit

Permalink
fix: 大写y仅在API24之后支持
Browse files Browse the repository at this point in the history
  • Loading branch information
styluo authored and 小肥阳 committed Aug 6, 2020
1 parent d5b962b commit 91ef783
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public void delAllMsg() {

@SuppressLint("SimpleDateFormat")
private String hourStr() {
return new SimpleDateFormat("YYYYMMddHH").format(new Date());
return new SimpleDateFormat("yyyyMMddHH").format(new Date());
}

public void updateStatics(int generateNum, int sentSuccessNum,
Expand Down

0 comments on commit 91ef783

Please sign in to comment.