mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-10 07:58:39 -05:00
fix playlist names to use underscores for filenames
This commit is contained in:
@@ -1994,10 +1994,11 @@ public class JellyfinController : ControllerBase
|
|||||||
var results = new Dictionary<string, object>();
|
var results = new Dictionary<string, object>();
|
||||||
|
|
||||||
// Hardcoded playlist names that match the Spotify Import plugin format
|
// Hardcoded playlist names that match the Spotify Import plugin format
|
||||||
|
// Note: Plugin replaces spaces with underscores in filenames
|
||||||
var playlistNames = new Dictionary<string, string>
|
var playlistNames = new Dictionary<string, string>
|
||||||
{
|
{
|
||||||
{ "4383a46d8bcac3be2ef9385053ea18df", "Discover Weekly" },
|
{ "4383a46d8bcac3be2ef9385053ea18df", "Discover_Weekly" },
|
||||||
{ "ba50e26c867ec9d57ab2f7bf24cfd6b0", "Release Radar" }
|
{ "ba50e26c867ec9d57ab2f7bf24cfd6b0", "Release_Radar" }
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var playlistId in _spotifySettings.PlaylistIds)
|
foreach (var playlistId in _spotifySettings.PlaylistIds)
|
||||||
|
|||||||
Reference in New Issue
Block a user