mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-19 23:54:01 +08:00
fix: 时间为0的异常
This commit is contained in:
@@ -131,7 +131,7 @@ class Utils {
|
||||
}
|
||||
if (time < 3600) {
|
||||
if (time == 0) {
|
||||
return time;
|
||||
return time.toString();
|
||||
}
|
||||
final int minute = time ~/ 60;
|
||||
final double res = time / 60;
|
||||
|
||||
Reference in New Issue
Block a user