Fix TimeSpanExtensions

This commit is contained in:
Malte Rosenbjerg 2023-02-21 18:37:56 +01:00
parent 54e216d3e0
commit 7ebf948f93

View file

@ -10,6 +10,6 @@ public static string ToLongString(this TimeSpan timeSpan)
hours += timeSpan.Days * 24;
}
return $"-ss {hours:00}:{timeSpan.Minutes:00}:{timeSpan.Seconds:00}.{timeSpan.Milliseconds:000}";
return $"{hours:00}:{timeSpan.Minutes:00}:{timeSpan.Seconds:00}.{timeSpan.Milliseconds:000}";
}
}