mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-19 17:32:38 +01:00
Fixed: Total runtime hours without decimal point
This commit is contained in:
parent
68c20713e5
commit
2f413c68d9
@ -55,9 +55,11 @@ public static MediaInfoResource ToResource(this MediaInfoModel model, string sce
|
||||
|
||||
private static string FormatRuntime(TimeSpan runTime)
|
||||
{
|
||||
if (runTime.TotalHours > 0)
|
||||
var hours = (int)runTime.TotalHours;
|
||||
|
||||
if (hours > 0)
|
||||
{
|
||||
return $"{runTime.TotalHours}:{runTime.Minutes:00}:{runTime.Seconds:00}";
|
||||
return $"{hours}:{runTime.Minutes:00}:{runTime.Seconds:00}";
|
||||
}
|
||||
|
||||
return $"{runTime.Minutes}:{runTime.Seconds:00}";
|
||||
|
Loading…
Reference in New Issue
Block a user