diff options
| author | nicknsy <20588554+nicknsy@users.noreply.github.com> | 2023-03-13 00:21:36 -0700 |
|---|---|---|
| committer | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-06-22 16:23:51 -0700 |
| commit | 79a0e36b90c9e195606cc21aad3967ae4335dcc0 (patch) | |
| tree | bd6db032d8b7aa0186d75f5a8010da47561006b7 | |
| parent | 2e2085a212312282e20dcb6578503b6daff9b72e (diff) | |
Remove max runtime
| -rw-r--r-- | MediaBrowser.Providers/Trickplay/TrickplayImagesTask.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Providers/Trickplay/TrickplayImagesTask.cs b/MediaBrowser.Providers/Trickplay/TrickplayImagesTask.cs index a364926c0..fa50f80b8 100644 --- a/MediaBrowser.Providers/Trickplay/TrickplayImagesTask.cs +++ b/MediaBrowser.Providers/Trickplay/TrickplayImagesTask.cs @@ -63,8 +63,7 @@ namespace MediaBrowser.Providers.Trickplay new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerDaily, - TimeOfDayTicks = TimeSpan.FromHours(3).Ticks, - MaxRuntimeTicks = TimeSpan.FromHours(5).Ticks + TimeOfDayTicks = TimeSpan.FromHours(3).Ticks } }; } |
