diff options
| author | Bill Thornton <billt2006@gmail.com> | 2022-03-01 00:49:29 -0500 |
|---|---|---|
| committer | Bill Thornton <billt2006@gmail.com> | 2022-03-01 00:50:16 -0500 |
| commit | 055c63bdeeb257bda1ec45090d6d0797f9e1262a (patch) | |
| tree | 9a9bdb0caba0b112fea591d1c186b891838ed18f /MediaBrowser.Model | |
| parent | 7c9aa63382d3d0e4a3e3285732f469026b98aa07 (diff) | |
Include played and unplayed results in the same next up request
Diffstat (limited to 'MediaBrowser.Model')
| -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 7c65fda1a..133d6a916 100644 --- a/MediaBrowser.Model/Querying/NextUpQuery.cs +++ b/MediaBrowser.Model/Querying/NextUpQuery.cs @@ -14,7 +14,7 @@ namespace MediaBrowser.Model.Querying EnableTotalRecordCount = true; DisableFirstEpisode = false; NextUpDateCutoff = DateTime.MinValue; - Rewatching = false; + EnableRewatching = false; } /// <summary> @@ -86,6 +86,6 @@ namespace MediaBrowser.Model.Querying /// <summary> /// Gets or sets a value indicating whether getting rewatching next up list. /// </summary> - public bool Rewatching { get; set; } + public bool EnableRewatching { get; set; } } } |
