diff options
Diffstat (limited to 'MediaBrowser.Model/Querying/NextUpQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/Querying/NextUpQuery.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Querying/NextUpQuery.cs b/MediaBrowser.Model/Querying/NextUpQuery.cs index c5b39001a..fa8aa829d 100644 --- a/MediaBrowser.Model/Querying/NextUpQuery.cs +++ b/MediaBrowser.Model/Querying/NextUpQuery.cs @@ -13,7 +13,7 @@ namespace MediaBrowser.Model.Querying EnableImageTypes = Array.Empty<ImageType>(); EnableTotalRecordCount = true; DisableFirstEpisode = false; - NextUpDateCutoff = null; + NextUpDateCutoff = DateTime.MinValue; } /// <summary> @@ -80,6 +80,6 @@ namespace MediaBrowser.Model.Querying /// <summary> /// Gets or sets a value indicating the oldest date for a show to appear in Next Up. /// </summary> - public DateTime? NextUpDateCutoff { get; set; } + public DateTime NextUpDateCutoff { get; set; } } } |
