From 449bcc25615c6f1af92c04bba3668699e42e1ad3 Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Sun, 1 Feb 2026 11:11:11 -0500 Subject: [PATCH] Fix spotify/sync endpoint route priority --- allstarr/Controllers/JellyfinController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allstarr/Controllers/JellyfinController.cs b/allstarr/Controllers/JellyfinController.cs index 5b339c5..08687c0 100644 --- a/allstarr/Controllers/JellyfinController.cs +++ b/allstarr/Controllers/JellyfinController.cs @@ -2207,7 +2207,7 @@ public class JellyfinController : ControllerBase /// Manual trigger endpoint to force fetch Spotify missing tracks. /// GET /spotify/sync?api_key=YOUR_KEY /// - [HttpGet("spotify/sync")] + [HttpGet("spotify/sync", Order = 1)] [ServiceFilter(typeof(ApiKeyAuthFilter))] public async Task TriggerSpotifySync() {