From a8acdf4299d626e195d44dab81c514d36617fe90 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 20 Jan 2026 22:15:00 +0100 Subject: [PATCH] feat(tv): hide music and playlists libraries on tv --- components/library/TVLibraries.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/library/TVLibraries.tsx b/components/library/TVLibraries.tsx index b98ffa09..d7e445a0 100644 --- a/components/library/TVLibraries.tsx +++ b/components/library/TVLibraries.tsx @@ -254,7 +254,9 @@ export const TVLibraries: React.FC = () => { () => userViews ?.filter((l) => !settings?.hiddenLibraries?.includes(l.Id!)) - .filter((l) => l.CollectionType !== "books") || [], + .filter((l) => l.CollectionType !== "books") + .filter((l) => l.CollectionType !== "music") + .filter((l) => l.CollectionType !== "playlists") || [], [userViews, settings?.hiddenLibraries], );