diff options
| author | Seven Rats <79296037+sevenrats@users.noreply.github.com> | 2026-05-03 06:18:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-03 12:18:20 +0200 |
| commit | f5f75ed2e1b10dc1f4e55d5cdd9dd7fd69ea8f2b (patch) | |
| tree | 8049df344dbcf64dd35ec2bae5a9bd1ef9c3b1a1 /Jellyfin.Api/Controllers | |
| parent | df6f706c2f632b9e1eeeabccf5511ab24f317633 (diff) | |
feat/audiobook_chapters (#16518)
feat/audiobook_chapters
Diffstat (limited to 'Jellyfin.Api/Controllers')
| -rw-r--r-- | Jellyfin.Api/Controllers/LibraryController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/LibraryController.cs b/Jellyfin.Api/Controllers/LibraryController.cs index 6ef40a1898..3e483d09df 100644 --- a/Jellyfin.Api/Controllers/LibraryController.cs +++ b/Jellyfin.Api/Controllers/LibraryController.cs @@ -976,7 +976,7 @@ public class LibraryController : BaseJellyfinApiController CollectionType.playlists => new[] { "Playlist" }, CollectionType.movies => new[] { "Movie" }, CollectionType.tvshows => new[] { "Series", "Season", "Episode" }, - CollectionType.books => new[] { "Book" }, + CollectionType.books => new[] { "Book", "AudioBook" }, CollectionType.music => new[] { "MusicArtist", "MusicAlbum", "Audio", "MusicVideo" }, CollectionType.homevideos => new[] { "Video", "Photo" }, CollectionType.photos => new[] { "Video", "Photo" }, |
