From 64e2004bdcae3a774999e867dce4ed87338fa12e Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Fri, 6 Feb 2026 23:26:30 -0500 Subject: [PATCH] Fix syntax error in AdminController.cs - move closing brace to correct location --- allstarr/Controllers/AdminController.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/allstarr/Controllers/AdminController.cs b/allstarr/Controllers/AdminController.cs index abd313a..da6ecd7 100644 --- a/allstarr/Controllers/AdminController.cs +++ b/allstarr/Controllers/AdminController.cs @@ -3267,7 +3267,6 @@ public class AdminController : ControllerBase } #endregion -} public class ManualMappingRequest { @@ -3323,7 +3322,6 @@ public class LinkPlaylistRequest public string SpotifyPlaylistId { get; set; } = string.Empty; } - /// /// GET /api/admin/downloads /// Lists all downloaded files in the downloads directory @@ -3505,4 +3503,4 @@ public class LinkPlaylistRequest } return $"{len:0.##} {sizes[order]}"; } -} +} \ No newline at end of file