Browse Source

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>
theguymadmax 3 months ago
parent
commit
7ca09c4081
1 changed files with 5 additions and 0 deletions
  1. 5 0
      MediaBrowser.Controller/Entities/Folder.cs

+ 5 - 0
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;