diff options
| author | Jack <jack.vanier16@outlook.com> | 2021-04-16 13:57:22 -0400 |
|---|---|---|
| committer | Jack <jack.vanier16@outlook.com> | 2021-04-16 13:57:22 -0400 |
| commit | 198cc6e76af180d0ea3216a928096c4335099fd7 (patch) | |
| tree | 7c90288f12d1c1bdd3bb6217fa901b5d7ed536b1 /Jellyfin.Api/Controllers/TvShowsController.cs | |
| parent | d7855500c2c16a0b4b7fb7ed72e59ecd6ab0c514 (diff) | |
Some code cleanup. Allow NextUpDateCutoff to be null
Diffstat (limited to 'Jellyfin.Api/Controllers/TvShowsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/TvShowsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/TvShowsController.cs b/Jellyfin.Api/Controllers/TvShowsController.cs index 59802e2a5..5e90e37f3 100644 --- a/Jellyfin.Api/Controllers/TvShowsController.cs +++ b/Jellyfin.Api/Controllers/TvShowsController.cs @@ -82,7 +82,7 @@ namespace Jellyfin.Api.Controllers [FromQuery] int? imageTypeLimit, [FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] ImageType[] enableImageTypes, [FromQuery] bool? enableUserData, - [FromQuery] DateTime nextUpDateCutoff, + [FromQuery] DateTime? nextUpDateCutoff, [FromQuery] bool enableTotalRecordCount = true, [FromQuery] bool disableFirstEpisode = false) { |
