From 02281120dcd26fc88985a1779440a5da2bcd6a69 Mon Sep 17 00:00:00 2001 From: Fishandchips321 Date: Wed, 24 Dec 2025 18:35:48 +0000 Subject: [PATCH] Filter out collections and playlists libraries --- backend/src/Services/LibraryService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/src/Services/LibraryService.cs b/backend/src/Services/LibraryService.cs index efdabd1..41e6c51 100644 --- a/backend/src/Services/LibraryService.cs +++ b/backend/src/Services/LibraryService.cs @@ -23,6 +23,11 @@ public class LibraryService : ILibraryService foreach (var library in clientLibraries.Items) { + if (library.Name == "Collections" || library.Name == "Playlists") + { + continue; + } + if (!libraries.ContainsKey(library.Name)) {