fix: add a space after the h and min to format/show the human duration correctly (#203)

This commit is contained in:
Luis Uguina
2020-04-12 21:18:35 +10:00
committed by GitHub
parent 2e7755c823
commit 4f5fcf9d1b

View File

@@ -192,10 +192,10 @@ public class Utils {
String output = "";
if (hours > 0) {
output += hours + "h";
output += hours + "h ";
}
if (minutes > 0) {
output += minutes + "min";
output += minutes + "min ";
}
if (seconds > 0) {
output += seconds + "s";