1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 21:55:13 +00:00

Small fix

This commit is contained in:
M66B 2023-12-21 18:37:11 +01:00
parent ee508cc4f6
commit 4f25a69998

View file

@ -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) {