mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 21:55:13 +00:00
Small fix
This commit is contained in:
parent
ee508cc4f6
commit
4f25a69998
1 changed files with 1 additions and 1 deletions
|
@ -2308,7 +2308,7 @@ public class Helper {
|
|||
return (sign < 0 ? "-" : "") +
|
||||
(days > 0 ? days + " " : "") +
|
||||
DateUtils.formatElapsedTime(seconds) +
|
||||
(ms == 0 ? "" : ". " + ms);
|
||||
(ms == 0 ? "" : "." + ms);
|
||||
}
|
||||
|
||||
static String formatNumber(Integer number, long max, NumberFormat nf) {
|
||||
|
|
Loading…
Reference in a new issue