fix: add a space after the h and min to format/show the human duration correctly (#203)
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user