diff --git a/src/Prowlarr.Api.V1/Profiles/App/AppProfileController.cs b/src/Prowlarr.Api.V1/Profiles/App/AppProfileController.cs index 2225ace22..586b2ca9f 100644 --- a/src/Prowlarr.Api.V1/Profiles/App/AppProfileController.cs +++ b/src/Prowlarr.Api.V1/Profiles/App/AppProfileController.cs @@ -30,9 +30,10 @@ public ActionResult Create(AppProfileResource resource) [RestDeleteById] [Produces("application/json")] - public void DeleteProfile(int id) + public object DeleteProfile(int id) { _profileService.Delete(id); + return new { }; } [RestPutById]