diff --git a/ArchiSteamFarm/Utilities.cs b/ArchiSteamFarm/Utilities.cs index 9eabb985f..7f2a93009 100644 --- a/ArchiSteamFarm/Utilities.cs +++ b/ArchiSteamFarm/Utilities.cs @@ -99,6 +99,15 @@ namespace ArchiSteamFarm { result.Append(','); } + if (timeSpan.Minutes > 0) { + result.Append(" " + timeSpan.Minutes + " minute"); + if (timeSpan.Minutes > 1) { + result.Append('s'); + } + + result.Append(','); + } + if (timeSpan.Seconds > 0) { result.Append(" " + timeSpan.Hours + " second"); if (timeSpan.Seconds > 1) {