aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2026-07-04 10:06:44 -0400
committerGitHub <noreply@github.com>2026-07-04 10:06:44 -0400
commite2eaacd239e2ddf9ee93df7fcb63934d4fdfb2ac (patch)
treeddc5bafb658b3345b7342e440fc26d45d181e3aa
parent77d4ab9ea940198b08d3bf3cea2023831f1e00da (diff)
parent08ba3717ead66b856af4694643d8a74bbc53e47c (diff)
Merge pull request #17222 from theguymadmax/fix-folder-viewHEADmaster
Fix folder view
-rw-r--r--Jellyfin.Api/Extensions/DtoExtensions.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Jellyfin.Api/Extensions/DtoExtensions.cs b/Jellyfin.Api/Extensions/DtoExtensions.cs
index a6bb4f22dd..09793553c2 100644
--- a/Jellyfin.Api/Extensions/DtoExtensions.cs
+++ b/Jellyfin.Api/Extensions/DtoExtensions.cs
@@ -34,6 +34,8 @@ public static class DtoExtensions
case CollectionType.homevideos:
case CollectionType.photos:
return [BaseItemKind.Video, BaseItemKind.Photo];
+ case CollectionType.folders:
+ return [];
default:
return [BaseItemKind.Video, BaseItemKind.Audio, BaseItemKind.Photo, BaseItemKind.Movie, BaseItemKind.Series];
}