mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
Change GetPlaylistItems route order to 1 and add debug logging
This commit is contained in:
@@ -1643,10 +1643,11 @@ public class JellyfinController : ControllerBase
|
||||
/// <summary>
|
||||
/// Intercepts playlist items requests to inject Spotify playlist tracks.
|
||||
/// </summary>
|
||||
[HttpGet("Playlists/{playlistId}/Items", Order = 5)]
|
||||
[HttpGet("playlists/{playlistId}/items", Order = 5)]
|
||||
[HttpGet("Playlists/{playlistId}/Items", Order = 1)]
|
||||
[HttpGet("playlists/{playlistId}/items", Order = 1)]
|
||||
public async Task<IActionResult> GetPlaylistItems(string playlistId)
|
||||
{
|
||||
_logger.LogInformation("=== GetPlaylistItems INTERCEPTED === playlistId={PlaylistId}", playlistId);
|
||||
return await GetPlaylistTracks(playlistId);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user