Fix syntax error in AdminController.cs - move closing brace to correct location

This commit is contained in:
2026-02-06 23:26:30 -05:00
parent 7cee0911b6
commit 64e2004bdc

View File

@@ -3267,7 +3267,6 @@ public class AdminController : ControllerBase
} }
#endregion #endregion
}
public class ManualMappingRequest public class ManualMappingRequest
{ {
@@ -3323,7 +3322,6 @@ public class LinkPlaylistRequest
public string SpotifyPlaylistId { get; set; } = string.Empty; public string SpotifyPlaylistId { get; set; } = string.Empty;
} }
/// <summary> /// <summary>
/// GET /api/admin/downloads /// GET /api/admin/downloads
/// Lists all downloaded files in the downloads directory /// Lists all downloaded files in the downloads directory
@@ -3505,4 +3503,4 @@ public class LinkPlaylistRequest
} }
return $"{len:0.##} {sizes[order]}"; return $"{len:0.##} {sizes[order]}";
} }
} }