From 04a1f60800600596322398cb3b3a3c2a02ac357d Mon Sep 17 00:00:00 2001 From: jhays Date: Fri, 22 Oct 2021 17:12:54 -0500 Subject: [PATCH] omit music from libraries list --- JellyfinPlayer tvOS/Views/LibraryListView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JellyfinPlayer tvOS/Views/LibraryListView.swift b/JellyfinPlayer tvOS/Views/LibraryListView.swift index 051dcbbf..d7ecd279 100644 --- a/JellyfinPlayer tvOS/Views/LibraryListView.swift +++ b/JellyfinPlayer tvOS/Views/LibraryListView.swift @@ -18,7 +18,7 @@ struct LibraryListView: View { LazyVStack { if !viewModel.isLoading { ForEach(viewModel.libraries, id: \.id) { library in - if library.collectionType ?? "" == "movies" || library.collectionType ?? "" == "tvshows" { + if library.collectionType ?? "" == "movies" || library.collectionType ?? "" == "tvshows" || library.collectionType ?? "" == "music" { EmptyView() } else { NavigationLink(destination: LazyView {