Browse Source

fix failing unit tests (#2772)

pull/2774/head
Jason Dove 7 months ago committed by GitHub
parent
commit
e167c9318c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      ErsatzTV.Core/FFmpeg/CustomStreamSelector.cs

2
ErsatzTV.Core/FFmpeg/CustomStreamSelector.cs

@ -316,7 +316,7 @@ public class CustomStreamSelector(IFileSystem fileSystem, ILogger<CustomStreamSe @@ -316,7 +316,7 @@ public class CustomStreamSelector(IFileSystem fileSystem, ILogger<CustomStreamSe
{
"channel_number" => channel.Number,
"channel_name" => channel.Name,
"time_of_day_seconds" => contentStartTime.LocalDateTime.TimeOfDay.TotalSeconds,
"time_of_day_seconds" => contentStartTime.TimeOfDay.TotalSeconds,
"day_of_week" => GetLocalizedDayOfWeekIndex(contentStartTime),
_ => e.Result
};

Loading…
Cancel
Save