Skip to content

Commit 98cb4bd

Browse files
committed
Fix books not displaying in genre lists
1 parent 55f8e25 commit 98cb4bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/controllers/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function getItems(instance, params, item, sortBy, startIndex, limit) {
315315
} else if (item.CollectionType === CollectionType.Tvshows) {
316316
query.IncludeItemTypes = 'Series';
317317
} else if (item.Type === 'Genre') {
318-
query.IncludeItemTypes = 'Movie,Series,Video';
318+
query.IncludeItemTypes = 'Audiobook,Book,Movie,Series,Video';
319319
} else if (item.Type === 'Person') {
320320
query.IncludeItemTypes = params.type;
321321
}

0 commit comments

Comments
 (0)