diff --git a/allstarr/Controllers/JellyfinController.cs b/allstarr/Controllers/JellyfinController.cs index b4ef2f2..445f1d8 100644 --- a/allstarr/Controllers/JellyfinController.cs +++ b/allstarr/Controllers/JellyfinController.cs @@ -1210,17 +1210,6 @@ public class JellyfinController : ControllerBase #region Playlists - /// - /// Intercepts playlist items requests to inject Spotify playlists. - /// This route must have lower Order than the catch-all ProxyRequest route. - /// - [HttpGet("Playlists/{playlistId}/Items", Order = 5)] - public async Task GetPlaylistItems(string playlistId) - { - _logger.LogInformation("GetPlaylistItems called for playlist {PlaylistId}", playlistId); - return await GetPlaylistTracks(playlistId); - } - /// /// Gets playlist tracks displayed as an album. /// diff --git a/allstarr/Services/Spotify/SpotifyMissingTracksFetcher.cs b/allstarr/Services/Spotify/SpotifyMissingTracksFetcher.cs index fa77c1e..9c6442f 100644 --- a/allstarr/Services/Spotify/SpotifyMissingTracksFetcher.cs +++ b/allstarr/Services/Spotify/SpotifyMissingTracksFetcher.cs @@ -27,6 +27,8 @@ public class SpotifyMissingTracksFetcher : BackgroundService _httpClientFactory = httpClientFactory; _cache = cache; _logger = logger; + + _logger.LogInformation("SpotifyMissingTracksFetcher: Constructor called"); } protected override async Task ExecuteAsync(CancellationToken stoppingToken)