From fb51ce55708daa42beb47c91dd573e66578e39f1 Mon Sep 17 00:00:00 2001 From: Aiden Vigue Date: Tue, 16 Feb 2021 09:34:06 -0500 Subject: [PATCH] feat(rebase): rebase --- server/api/jellyfin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/api/jellyfin.ts b/server/api/jellyfin.ts index 50488cbe7..2a3f58b88 100644 --- a/server/api/jellyfin.ts +++ b/server/api/jellyfin.ts @@ -184,7 +184,7 @@ class JellyfinAPI { public async getLibraryContents(id: string): Promise { try { const contents = await this.axios.get( - `/Users/${this.userId}/Items?SortBy=SortName&SortOrder=Ascending&Recursive=true&StartIndex=0&ParentId=${id}` + `/Users/${this.userId}/Items?SortBy=SortName&SortOrder=Ascending&IncludeItemTypes=Series,Movie&Recursive=true&StartIndex=0&ParentId=${id}` ); return contents.data.Items;