mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-01 14:26:40 +01:00
Some code cleanup. Allow NextUpDateCutoff to be null
This commit is contained in:
@@ -13,7 +13,7 @@ namespace MediaBrowser.Model.Querying
|
||||
EnableImageTypes = Array.Empty<ImageType>();
|
||||
EnableTotalRecordCount = true;
|
||||
DisableFirstEpisode = false;
|
||||
NextUpDateCutoff = new DateTime(0001, 01, 01);
|
||||
NextUpDateCutoff = null;
|
||||
}
|
||||
|
||||
/// <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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user