diff options
| author | theguymadmax <theguymadmax@proton.me> | 2026-07-02 14:04:20 -0400 |
|---|---|---|
| committer | theguymadmax <theguymadmax@proton.me> | 2026-07-02 14:04:20 -0400 |
| commit | 08ba3717ead66b856af4694643d8a74bbc53e47c (patch) | |
| tree | 99e21ceb8714d862c66f0d8a93e256f5eb736673 | |
| parent | 9cc25d133dc9f41b03da6bccbfd53e1a509a86c6 (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]; } |
