diff --git a/allstarr/Controllers/JellyfinController.cs b/allstarr/Controllers/JellyfinController.cs index 445f1d8..97f72ea 100644 --- a/allstarr/Controllers/JellyfinController.cs +++ b/allstarr/Controllers/JellyfinController.cs @@ -1270,7 +1270,7 @@ public class JellyfinController : ControllerBase { // Get playlist info from Jellyfin to check the name var playlistInfo = await _proxyService.GetJsonAsync($"Items/{playlistId}", null, Request.Headers); - if (playlistInfo != null && playlistInfo.TryGetProperty("Name", out var nameElement)) + if (playlistInfo != null && playlistInfo.RootElement.TryGetProperty("Name", out var nameElement)) { var playlistName = nameElement.GetString() ?? "";