Tweak duration_to_string formatting

This commit is contained in:
Wuzzy 2021-03-15 01:59:52 +01:00 committed by sfan5
parent 9113538142
commit 62e3593944
1 changed files with 7 additions and 3 deletions

View File

@ -670,15 +670,19 @@ inline const std::string duration_to_string(int sec)
std::stringstream ss; std::stringstream ss;
if (hour > 0) { if (hour > 0) {
ss << hour << "h "; ss << hour << "h";
if (min > 0 || sec > 0)
ss << " ";
} }
if (min > 0) { if (min > 0) {
ss << min << "m "; ss << min << "min";
if (sec > 0)
ss << " ";
} }
if (sec > 0) { if (sec > 0) {
ss << sec << "s "; ss << sec << "s";
} }
return ss.str(); return ss.str();