From 4f5fcf9d1bd7c92f7f5811e6a788b1eacd8c81d2 Mon Sep 17 00:00:00 2001 From: Luis Uguina Date: Sun, 12 Apr 2020 21:18:35 +1000 Subject: [PATCH] fix: add a space after the h and min to format/show the human duration correctly (#203) --- src/com/sheepit/client/Utils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/Utils.java b/src/com/sheepit/client/Utils.java index a2042c1..52b609f 100644 --- a/src/com/sheepit/client/Utils.java +++ b/src/com/sheepit/client/Utils.java @@ -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";