diff options
| author | theguymadmax <171496228+theguymadmax@users.noreply.github.com> | 2025-02-21 05:39:38 -0500 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2025-02-21 05:39:38 -0500 |
| commit | 7ca09c4081d5953bc5b9f4673de66b9118c90389 (patch) | |
| tree | f61aeddd2af1de9f0412d7625561b1a69490df72 | |
| parent | 51e0ce7ea4cdbaf3f6b0edfc9a3440b56077cc85 (diff) | |
Backport pull request #13594 from jellyfin/release-10.10.z
Fix 4K filtering when grouping movies into collections
Original-merge: 317d7a9f4f76dbd964e2649ed4b7d03d3e68ca9d
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Bond_009 <bond.009@outlook.com>
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index 957e8b319..af6348e46 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -1202,6 +1202,11 @@ namespace MediaBrowser.Controller.Entities return false; } + if (request.Is4K.HasValue) + { + return false; + } + if (request.IsHD.HasValue) { return false; |
