Closed Igneous01 closed 6 years ago
The issue is in the TimeSpan tostring, which by defaul includes days as dd.HH.MM.SS.ss
to correct this, need to change the string format to:
(int)(t.TotalHours) + ":" + t.ToString(@"mm\:ss")
Confirmed fix in master.
Highlighted part - shows a decimal but it should be a time in HH:MM:DD