Review notes to set value to Datetime min value instead of null

This commit is contained in:
Jack
2021-05-25 20:46:29 -04:00
parent 7a17de84d9
commit e3ff473bd4
3 changed files with 5 additions and 5 deletions

View File

@@ -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; }
}
}