We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc43a2 commit 265b4ebCopy full SHA for 265b4eb
src/main/java/io/nbs/commons/helper/DateHelper.java
@@ -93,7 +93,7 @@ private static void calc(StringBuffer sb,long time){
93
less = time%MIN_MILLIONS;
94
if(less!=0l)calc(sb,less);
95
}else {
96
- int s = (int)(time/10000);
+ int s = (int)(time/1000);
97
if(s>0){
98
sb.append(s).append("秒");
99
}
0 commit comments