diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-07-04 10:06:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-04 10:06:44 -0400 |
| commit | e2eaacd239e2ddf9ee93df7fcb63934d4fdfb2ac (patch) | |
| tree | ddc5bafb658b3345b7342e440fc26d45d181e3aa | |
| parent | 77d4ab9ea940198b08d3bf3cea2023831f1e00da (diff) | |
| parent | 08ba3717ead66b856af4694643d8a74bbc53e47c (diff) | |
Fix folder view
| -rw-r--r-- | Jellyfin.Api/Extensions/DtoExtensions.cs | 2 |
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]; } |
