From bc4faead74cb3b6308092f1dca610ca3a0936c8a Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Sat, 31 Jan 2026 19:35:55 -0500 Subject: [PATCH] fix playlist names to use underscores for filenames --- allstarr/Controllers/JellyfinController.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/allstarr/Controllers/JellyfinController.cs b/allstarr/Controllers/JellyfinController.cs index 6e5ce76..605b72b 100644 --- a/allstarr/Controllers/JellyfinController.cs +++ b/allstarr/Controllers/JellyfinController.cs @@ -1994,10 +1994,11 @@ public class JellyfinController : ControllerBase var results = new Dictionary(); // Hardcoded playlist names that match the Spotify Import plugin format + // Note: Plugin replaces spaces with underscores in filenames var playlistNames = new Dictionary { - { "4383a46d8bcac3be2ef9385053ea18df", "Discover Weekly" }, - { "ba50e26c867ec9d57ab2f7bf24cfd6b0", "Release Radar" } + { "4383a46d8bcac3be2ef9385053ea18df", "Discover_Weekly" }, + { "ba50e26c867ec9d57ab2f7bf24cfd6b0", "Release_Radar" } }; foreach (var playlistId in _spotifySettings.PlaylistIds)